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

if语句判断身高体重是否标准

时间:2015-07-07 18:58:55      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

1.判断身高,体重是否标准

Console.WriteLine("请输入您的身高:");
            int sg = Convert.ToInt32(Console.ReadLine());

            Console.WriteLine("请输入您的体重:");
            int tz = Convert.ToInt32(Console.ReadLine());
           
            Console.WriteLine("请输入您的性别:");
            string xb = Console.ReadLine();

            if (xb =="")
            {
                int bzs = sg - 100 + 3;
                int bzx = sg - 100 - 3;

                if (tz >= bzx && tz <= bzs)
                {
                    Console.WriteLine("您的身材不错");
                }
                else if (tz < bzx)
                {
                    Console.WriteLine("您太瘦了,多吃点");
                }
                else
                {
                    Console.WriteLine("不能再吃了");
                }
            
            }

            else if (xb=="")
            {
                int bzs = sg - 110 + 3;
                int bzx = sg - 110 - 3;

                if (tz >= bzx && tz <= bzs)
                {
                    Console.WriteLine("身材好,身材火辣");
                }
                else if (tz < bzx)
                {
                    Console.WriteLine("美女,有点瘦了");
                }
                else
                {
                    Console.WriteLine("再吃女神变屌丝了");
                }
            }
            else
            {
                Console.WriteLine("没有您这种性别的人,请自己核实");
            }

 

if语句判断身高体重是否标准

标签:

原文地址:http://www.cnblogs.com/franky2015/p/4627529.html

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