java 13 练习题:基本数据类型与变量

发布时间:2023年12月22日

实例: 根据身高、体重计算BMI值

创建 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("肥胖");
		}
	}
}
练习1:试着实现将37摄氏度转换为整型的华氏度。(提示∶ 华氏度 =32+摄氏度 ×1.8)
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型)");
	}
}

练习2:一个圆柱形粮仓,底面值径为 10米,高为 3米,该粮仓体积为多少立方米?如果每立方米屯粮 750 千克,该粮仓一共可储存多少千克粮食?
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 + "千克粮食");
	}
}
文章来源:https://blog.csdn.net/qq_21531681/article/details/135140034
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。