-
Math.Ceiling メソッドを使用する方法:
double number = 3.14; int roundedNumber = (int)Math.Ceiling(number); Console.WriteLine(roundedNumber); // 出力: 4
-
Math.Round メソッドを使用する方法:
double number = 3.14; int roundedNumber = (int)Math.Round(number, MidpointRounding.AwayFromZero); Console.WriteLine(roundedNumber); // 出力: 4
-
Convert.ToInt32 メソッドを使用する方法:
double number = 3.14; int roundedNumber = Convert.ToInt32(Math.Ceiling(number)); Console.WriteLine(roundedNumber); // 出力: 4
これらの方法は、浮動小数点数を整数に変換して切り上げるための一般的な手法です。必要に応じて、適切なメソッドを選択して使用してください。