java浮点数四舍五入保留一位小数
时间: 2023-07-05 19:35:45 浏览: 110
你可以使用Java中的Math类来进行浮点数的四舍五入保留一位小数。以下是示例代码:
```
double num = 3.1415926;
double roundedNum = Math.round(num * 10.0) / 10.0;
System.out.println(roundedNum);
```
输出结果为:3.1
在这个例子中,我们将浮点数num乘以10,然后使用Math类的round()方法将结果四舍五入为整数。接着,我们将结果除以10.0,以保留一位小数,并将结果存储在变量roundedNum中。最后,我们使用System.out.println()方法来打印roundedNum的值。
相关问题
Java浮点数四舍五入保留一位小数
你可以使用Java中的Math类来进行浮点数的四舍五入保留一位小数。以下是示例代码:
```
double num = 3.1415926;
double roundedNum = Math.round(num * 10.0) / 10.0;
System.out.println(roundedNum);
```
输出结果为:3.1
在这个例子中,我们将浮点数num乘以10,然后使用Math类的round()方法将结果四舍五入为整数。接着,我们将结果除以10.0,以保留一位小数,并将结果存储在变量roundedNum中。最后,我们使用System.out.println()方法来打印roundedNum的值。
java浮点数float四舍五入保留一位小数
你可以使用Java中的DecimalFormat类来对float类型的浮点数进行四舍五入保留一位小数。以下是示例代码:
```
float num = 3.1415926f;
DecimalFormat df = new DecimalFormat("#.0");
String formattedNum = df.format(num);
System.out.println(formattedNum);
```
输出结果为:3.1
在这个例子中,我们使用了DecimalFormat类的构造函数来指定格式化模式,"#.0"表示保留一位小数。然后,我们将float类型的浮点数num传递给format()方法,并将结果存储在一个字符串formattedNum中。最后,我们使用System.out.println()方法来打印formattedNum的值。
阅读全文