Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# rounding with division [duplicate]

Tags:

c#

math

algebra

This program calculates the amount of instances an event occurs within time. The issue is that when I'm getting decimal numbers the program does not round how I want it to, for example: if i divide 7/5 i get 1, is it possible to get 2? the 'double' answer yields: 1.4.

static void Main(string[] args) {
    var kim = 7/5 ;
    Console.WriteLine(kim);
    Console.ReadKey();
}

Any division I make I want it to round up.

For example: 7/5 = 1.4, but I want it to be 2; 5/2 = 2.5, but I want it to be 3, etc.

like image 421
Adan Avatar asked Dec 24 '15 00:12

Adan


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.


2 Answers

7/5 is an integer division. It will always round down. You will need a double/decimal division and Math.Ceiling to round up:

Math.Ceiling(7.0 / 5.0);  // return 2.0

If your input values are ints, you will have to cast at least one of them to double

Math.Ceiling((double)7 / 5);
like image 161
Jakub Lortz Avatar answered Oct 07 '22 18:10

Jakub Lortz


As Jakub said, you can use Math.Ceiling, or another option is to use the modulo. If the modulo is greater than 0, it means that there was some remainder and therefore you want to add 1, otherwise, you just add 0.

static void Main(string[] args)
{
    var kim = 7/5 + (7%5 > 0 ? 1 : 0);

    Console.WriteLine(kim);
    Console.ReadKey();
}
like image 40
Leejay Schmidt Avatar answered Oct 07 '22 19:10

Leejay Schmidt