美文网首页
c#判断语句

c#判断语句

作者: 九条随笔 | 来源:发表于2018-10-20 20:25 被阅读5次

if else 语句

            Console.WriteLine("请输入您的年龄");
            int age = int.Parse(Console.ReadLine());
            if (age > 18)
            {
                Console.WriteLine("你已经成年了!");
            }
            else
            {
                if(age == 18)
                {
                    Console.WriteLine("这么巧!你刚好18岁");
                }
                else
                {
                    Console.WriteLine("对不起,你未满18岁!");
                }
            }
            Console.Read();

相关文章

网友评论

      本文标题:c#判断语句

      本文链接:https://www.haomeiwen.com/subject/mtomzftx.html