Answers for "how to round up integer in c#"

C#
7

c# round number

double number = 1.5362
  
int rounded = Math.Round(number)
//rounds number to 2
  
double rounded_2 = Math.Round(number, 2)
//rounds number to 1.54
Posted by: Guest on March-04-2020
1

c# round up

double resultA = Math.Ceiling(1.02); //Mathf.Ceil for Unity

int resultB = Mathf.CeilToInt(1.02); //Unity Only
Posted by: Guest on September-16-2020
0

round to the nearest whole number c#

var roundedA = Math.Round(1.1, 0); // Output: 1
var roundedB = Math.Round(1.5, 0, MidpointRounding.AwayFromZero); // Output: 2
var roundedC = Math.Round(1.9, 0); // Output: 2
var roundedD = Math.Round(2.5, 0); // Output: 2
var roundedE = Math.Round(2.5, 0, MidpointRounding.AwayFromZero); // Output: 3
var roundedF = Math.Round(3.49, 0, MidpointRounding.AwayFromZero); // Output: 3
Posted by: Guest on January-16-2021

Code answers related to "how to round up integer in c#"

C# Answers by Framework

Browse Popular Code Answers by Language