gpt4 book ai didi

java - 在 Java 中将 115 打印为 1.15

转载 作者:行者123 更新时间:2023-12-01 18:42:25 26 4
gpt4 key购买 nike

我试图让这个 for 循环看起来好像它正在执行精确的算术,但我不太确定如何将我的 int (例如 115)打印为“假” double (例如 1.15)任何如有帮助,将不胜感激。谢谢!

for(int i = 115; i<350; i+=15)
{
System.out.print(i);
//possibly printf? I'm not very familiar with the method
}//for

最佳答案

您可以用这种简单的方式做到这一点。

System.out.print(i/100.0); // This will print 1.15, 1.3

但是如果您想打印小数点后 2 位数字,则需要这样做。

System.out.printf("%.2f",i/100.0);  // This will print 1.15, 1.30

关于java - 在 Java 中将 115 打印为 1.15,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19418494/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com