溫馨提示×

如何在Java中使用java四舍五入

小樊
107
2024-07-03 03:33:11
欄目: 編程語言

在Java中,可以使用Math.round()方法來實現(xiàn)四舍五入。該方法接受一個double類型的參數(shù),并返回最接近該參數(shù)的long類型整數(shù)值。如果參數(shù)大于或等于0.5,則返回向上取整的值;如果參數(shù)小于0.5,則返回向下取整的值。

例如,下面的代碼演示了如何使用Math.round()方法進行四舍五入:

double num1 = 10.4;
double num2 = 10.5;
double num3 = 10.6;

long roundedNum1 = Math.round(num1);
long roundedNum2 = Math.round(num2);
long roundedNum3 = Math.round(num3);

System.out.println("四舍五入結果:" + roundedNum1); // 輸出10
System.out.println("四舍五入結果:" + roundedNum2); // 輸出11
System.out.println("四舍五入結果:" + roundedNum3); // 輸出11

在上面的代碼中,num1被四舍五入為10,num2被四舍五入為11,num3被四舍五入為11。

0