Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I would like to round a number up to the next quarter (i.e. 2.1 rounds to 2.25). I understand that I can get the nearest quarter by using Math.Round(num * 4) / 4, but I would like to expand on this so that it always rounds up to the next quarter.

So far my only solutions involve using if blocks, but I would like to exhaust the one-liner algorithm approach first to try to keep things simple.

This is technically language independent, but in this case I am using C#.

To be clear, below are examples of what I want:

  • 2.0 stays as 2.0
  • 2.01 - 2.24 round up to 2.25
  • 2.25 stays as 2.25
  • 2.26 - 2.49 round up to 2.5
  • and so on...
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
249 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can use:

Math.Ceiling(num * 4) / 4.0;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...