gpt4 book ai didi

java - 使用数组编号计算后给出错误答案

转载 作者:行者123 更新时间:2023-12-01 10:37:22 25 4
gpt4 key购买 nike

以下代码给出了错误的答案。纠正它的最佳方法是什么?我是编程新手。

public class test {
public static void main(String[] args) {

double[] array = new double[] {5, 4, 6, 7, 7, 6};
double t= 6.4;

for (int k = 0; k < array.length; ++k){
double d= array[k]-t;
System.out.println("d is="+d);
}
}
}

最佳答案

使用DecimalFormat

DecimalFormat df = new DecimalFormat("####0.0");
System.out.println("D is: " + df.format(d));


或将您的代码 System.out.println("d is="+d);替换为

System.out.printf("d is : %.1f", d);


如果您希望将结果存储在字符串中而不是打印到控制台,请使用String.format()和与之相同的参数

String result = String.format("%.1f", d);

关于java - 使用数组编号计算后给出错误答案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34586557/

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