我应该在 TextPad 中设计一个程序来计算 BMI。我无法让程序使用公式计算 bmi。这是我的代码。
import java.util.Scanner;
public class BmiCalculator {
public static void main(String[] args) {
Scanner keyboard = new Scanner(System.in);
System.out.print("Enter weight in pounds: ");
double weightInPounds = keyboard.nextDouble();
System.out.print("Enter height in inches: ");
double heightInInches = keyboard.nextDouble();
double bmi = weightInPounds/(heightInInches * heightInInches) * 703;
System.out.println("Your body mass index is" + bmi);
}
}
输出显示:
以磅为单位输入体重:130
以英寸为单位输入高度:66
你的体重指数
当我运行程序时,没有显示 bmi。我编译了程序,TextPad 没有显示错误。我不知道我的代码有什么问题。任何人都可以在代码中找到错误吗?