当前位置:   article > 正文

C#基础①——if语句,if-else,switch-case结构_c# if else switch

c# if else switch


一、if语句:

if(条件) if (条件)语句;

{语句1;语句2;…}

用一对大括号来组成语句块

要点:只有小括号的值为true时,大括号里的内容才执行

例子1:跪键盘

	   Console.WriteLine("请输入跪键盘的时间");

       string strMain = Console.ReadLine();

       int min = Convert.ToInt32(strMain);

       bool result = min > 60;

       if (result)//条件 或者 是 bool 值
           //只有小括号的值为true时,大括号里的内容才执行
       {
   
           Console.WriteLine("不用跪键盘了");
           
       }

       Console.ReadKey();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

例子2:判断到结婚年龄的人儿

			Console.WriteLine("请您输入年龄");

            int age = Convert.ToInt32(Console.ReadLine());

            if (age >= 23)
            {
   
                Console.WriteLine("可以结婚了哈");
            }            
            Console.ReadKey();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

二、更好的实现:if-else语句

语法:

if(条件)</

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号