BalaHan-cc 2021-09-20 21:52 采纳率: 83.3%
浏览 35
已结题

java创建health类 求代码和运行截图

img

  • 写回答

1条回答 默认 最新

  • 林皓晨 2021-09-21 00:54
    关注
    
    /**
     * @author liuzhulin
     * @email 1392673190@qq.com
     * @desc 
     * @create 2021/09/21
     */
    public class Health {
        private double weight;
    
        private double height;
    
        public Health(double weight, double height) {
            this.weight = weight;
            this.height = height;
        }
    
        public void print() {
            double bmi = weight / height / height;
            DecimalFormat df = new DecimalFormat(".#");
            String bmiFormat = df.format(bmi);
            String ret = "";
            if (bmi < 18) {
                ret = "偏瘦";
            } else if (bmi < 25) {
                ret = "正常体重";
            } else if (bmi < 30) {
                ret = "轻度肥胖";
            } else if (bmi < 35) {
                ret = "中度肥胖";
            } else {
                ret = "重度肥胖";
            }
            System.out.println("您的BMI指数为" + bmiFormat + "," + ret + "体质");
        }
    }
    
    
    /**
     * @author liuzhulin
     * @email 1392673190@qq.com
     * @desc
     * @create 2021/09/21
     */
    public class Tester {
        public static void main(String[] args) {
            Health health = new Health(55, 1.8);
            health.print();
        }
    }
    

    打印结果:

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 9月28日
  • 已采纳回答 9月21日
  • 创建了问题 9月20日