赞
踩
刚开始学习C#程序编写,下面是一道练习程序,适合初学者掌握if语句和变量的使用方法。
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BMI体重计算
-
- {
- internal class Class1
- {
- static void Main(string[] args) //Main方法,程序的主入口方法
- { double height = 1.65; //身高参数 单位:米
- int weight = 75; //体重参数 单位:kg
- double exponent = weight / (height * height);
- Console.WriteLine("您的身高为:" + height);
- Console.WriteLine("您的体重为:" + weight);
- Console.WriteLine("您的BMI指数为:"+exponent);
- Console.Write("您的体重属于:");
-
- if(exponent<18.5)
- { Console.WriteLine("体重过轻"); }
- else if(exponent>=18.5&&exponent<24.9) { Console.WriteLine("正常范围"); }
-
- else if (exponent >= 24.9 && exponent < 29.9) { Console.WriteLine("体重过重"); }
- else if (exponent >= 29.9 ) { Console.WriteLine("肥胖"); }
- Console.ReadLine();
- }
-
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。