创建 BMIexponent 类,声明double 型变量height 记录身高,单位为米,声明 int 型变量 weight 记录体重,单位为千克,根据 BMI= 体重/(身高× 身高)的公式计算 BMI指数,实例代码如下∶
public class BMIexponent {
public static void main(String[] args) {
double height = 1.82; // 身高变量,单位:米
int weight = 65; // 体重变量,单位:千克
double exponent = weight / (height * height); // BMI计算公式
System.out.println("您的身高为:" + height);
System.out.println("您的体重为:" + weight);
System.out.println("您的BMI指数为:" + exponent);
System.out.print("您的体重属于:");
if (exponent < 18.5) { // 判断BMI指数是否小于18.5
System.out.println("体重过轻");
}
if (exponent >= 18.5 && exponent < 24.9) { // 判断BMI指数是否在18.5到24.9之间
System.out.println("正常范围");
}
if (exponent >= 24.9 && exponent < 29.9) { // 判断BMI指数是否在24.9到29.9之间
System.out.println("体重过重");
}
if (exponent >= 29.9) { // 判断BMI指数是否大于29.9之间
System.out.println("肥胖");
}
}
}
public class CelsiusToFahrenheit {
public static void main(String[] args) {
int celsius = 37;
System.out.println("要转换的摄氏度 = " + celsius);
double fahrenheit = 9.0/5 * celsius + 32;
int intfahrenheit = (int)fahrenheit;
System.out.println("37摄氏度 = " + fahrenheit + "华氏度(未转换成int型)");
System.out.println("37摄氏度 = " + intfahrenheit + "华氏度(转换成int型)");
}
}
public class Granary {
public static void main(String[] args) {
final double PI = 3.14;
int diameter = 10;
int height = 3;
double volume = diameter/2 * diameter/2 * PI * height;
System.out.println("该粮仓的体积 = " + volume + "立方米");
int weight = 750;
System.out.println("该粮仓一共可储存" + weight * volume + "千克粮食");
}
}