gpt4 book ai didi

java - 在 Java Pane 中格式化输出

转载 作者:行者123 更新时间:2023-12-01 13:34:57 25 4
gpt4 key购买 nike

我正在尝试使 java 程序的输出格式正确。该程序似乎可以正常工作。

[代码]

import javax.swing.JOptionPane;

public class Exercise4 {

public static void main(String[] args) {
double weight;
double height;
double bmi;
String input;

// Get users's weight.
input = JOptionPane.showInputDialog("Enter your weight.");

weight = Double.parseDouble(input);

//Get users's height
input = JOptionPane.showInputDialog("Enter your height in inches.");

height = Double.parseDouble(input);

bmi = weight * (703 / Math.pow(height, 2.0));

JOptionPane.showMessageDialog(null, "Your BMI is " + bmi);


}

}

[/代码]

最佳答案

试试这个:

JOptionPane.showMessageDialog(null, String.format("Your BMI is %1.2f", bmi));

%1.2f 将小数四舍五入到小数点后 2 位。

您应该看看format specifiers .

关于java - 在 Java Pane 中格式化输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21357720/

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