分支语句:判断结构要求程序员指定一个或多个要评估或测试的条件,以及条件为真时要执行的语句(必需的)和条件为假时要执行的语句(可选的). 分支语句 if if(判断条件表达式) {//表达式结果为ture时执行} else {//表达式结果为false时执行} For example Console.WriteLine("请输入一个数字:"); int iInput = Convert.ToInt32(Console.ReadLine());//记录用户的输入 != )//使用if语句
分支语句: if else if else : switch case --如何使用 if else if else: Console.WriteLine("请你出拳"); --输出[请你出拳] int a = Convert.ToInt32(Console.ReadLine()); --定义一个变量a Random i = new Random(); --随机数