-3

我应该在 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 没有显示错误。我不知道我的代码有什么问题。任何人都可以在代码中找到错误吗?

4

1 回答 1

3

你在滥用printf. 您应该使用字符串连接:

System.out.println("Your body mass index is" + bmi);

或使用使用您传递的 BMI 的正确格式字符串:

System.out.printf("Your body mass index is %f", + bmi);
于 2014-05-08T00:45:00.573 回答