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.
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? 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.
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.
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.
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 int
s, you will have to cast at least one of them to double
Math.Ceiling((double)7 / 5);
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();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With