码迷,mamicode.com
首页 > 其他好文 > 详细

if...else语句的应用

时间:2015-06-01 18:07:46      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

用户输入身高判断身体状况的题目

题目中用到的公式:体重=身高-100±3»»推出:3>体重-身高+100>-3

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            while (true)
            {
                Console.WriteLine("请输入您的性别,按回车确认。。。");
                string sex = Console.ReadLine();
                Console.WriteLine("请输入您的身高,按回车确认。。。");
                double height = Convert.ToDouble(Console.ReadLine());
                Console.WriteLine("请输入您的体重,按回车确认。。。");
                double weight = Convert.ToDouble(Console.ReadLine());
                if (sex == "")
                {
                     if(weight-height+100>-3&&weight-height+100<3)
                     {
                         Console.WriteLine("体重正常。");
                     }
                     else if(weight-height+100<-3)
                     {
                         Console.WriteLine("增加营养。");
                     }
                    else
                     {
                         Console.WriteLine("该减肥了。");
                     }
                }
                else if (sex=="")
                {
                    if (weight - height + 110 > -3 && weight - height + 110 < 3)
                    {
                        Console.WriteLine("体重正常。");
                    }
                    if (weight - height + 110 < -3)
                    {
                        Console.WriteLine("增加营养。");
                    }
                    else
                    {
                        Console.WriteLine("该减肥了。");
                    }
                }

            }
        }
     }     
}

 

             

if...else语句的应用

标签:

原文地址:http://www.cnblogs.com/gchlcc/p/4544180.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!