当前位置:   article > 正文

适合初学者练习的体重判断程序_consoleapp输入身高体重并计算bmi编程

consoleapp输入身高体重并计算bmi编程

 刚开始学习C#程序编写,下面是一道练习程序,适合初学者掌握if语句和变量的使用方法。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BMI体重计算
  7. {
  8. internal class Class1
  9. {
  10. static void Main(string[] args) //Main方法,程序的主入口方法
  11. { double height = 1.65; //身高参数 单位:米
  12. int weight = 75; //体重参数 单位:kg
  13. double exponent = weight / (height * height);
  14. Console.WriteLine("您的身高为:" + height);
  15. Console.WriteLine("您的体重为:" + weight);
  16. Console.WriteLine("您的BMI指数为:"+exponent);
  17. Console.Write("您的体重属于:");
  18. if(exponent<18.5)
  19. { Console.WriteLine("体重过轻"); }
  20. else if(exponent>=18.5&&exponent<24.9) { Console.WriteLine("正常范围"); }
  21. else if (exponent >= 24.9 && exponent < 29.9) { Console.WriteLine("体重过重"); }
  22. else if (exponent >= 29.9 ) { Console.WriteLine("肥胖"); }
  23. Console.ReadLine();
  24. }
  25. }
  26. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/389617
推荐阅读
相关标签
  

闽ICP备14008679号