C# 判断
判断结构要求程序员指定一个或多个要评估或测试的条件,以及条件为真时要执行的语句(必需的)和条件为假时要执行的语句(可选的)。
下面是大多数编程语言中典型的判断结构的一般形式:
判断语句
C# 提供了以下类型的判断语句。
If语句
一个 if 语句 由一个布尔表达式后跟一个或多个语句组成。
语法
C# 中 if 语句的语法:
if(boolean_expression) { /* 如果布尔表达式为真将执行的语句 */ }
如果布尔表达式为 true,则 if 语句内的代码块将被执行。如果布尔表达式为 false,则 if 语句结束后的第一组代码(闭括号后)将被执行。
流程图
实例
//if语句 表达式为true则执行代码块内函数 表达式为false则跳过 //日期为8.1则输出 建军节!和日期 ,否则输出日期 string day = DateTime.Now.Day.ToString(); string month = DateTime.Now.Month.ToString(); if (day.Equals("1")&&month.Equals("8")) { //时间为8月1日时触发 Console.WriteLine("建军节!"); } Console.WriteLine($"{month}月{day}日.");
if...else 语句
一个 if 语句 后可跟一个可选的 else 语句,else 语句在布尔表达式为假时执行。if(boolean_expression) { /* 如果布尔表达式为真将执行的语句 */ } else { /* 如果布尔表达式为假将执行的语句 */ }
如果布尔表达式为 true,则执行 if 块内的代码。如果布尔表达式为 false,则执行 else 块内的代码。
流程图
实例
// if else :if 表达式为false时执行else代码块内函数 var isMan = false; //isMan为false 输出 isWoman if (isMan) { Console.WriteLine("isMan"); } else { Console.WriteLine("isWoman"); }
f...else if...else 语句
一个 if 语句后可跟一个可选的 else if...else 语句,这可用于测试多种条件。
当使用 if...else if...else 语句时,以下几点需要注意:
- 一个 if 后可跟零个或一个 else,它必须在任何一个 else if 之后。
- 一个 if 后可跟零个或多个 else if,它们必须在 else 之前。
- 一旦某个 else if 匹配成功,其他的 else if 或 else 将不会被测试。
语法
C# 中的 if...else if...else 语句的语法:
if(boolean_expression 1) { /* 当布尔表达式 1 为真时执行 */ } else if( boolean_expression 2) { /* 当布尔表达式 2 为真时执行 */ } else if( boolean_expression 3) { /* 当布尔表达式 3 为真时执行 */ } else { /* 当上面条件都不为真时执行 */ }
实例
//猜数字 int score = 42; Console.WriteLine("getRange."); if (score>100) { Console.WriteLine("over 100."); }else if (score>50) { Console.WriteLine("over 50."); }else if (score < 25) { Console.WriteLine("less than 25"); }else{ Console.WriteLine($"the {score} over 25 and less than 50."); }
嵌套 if 语句
在 C# 中,嵌套 if-else 语句是合法的,这意味着可以在一个 if 或 else if 语句内使用另一个 if 或 else if 语句。
语法
C# 中 嵌套 if 语句的语法:
if( boolean_expression 1) { /* 当布尔表达式 1 为真时执行 */ if(boolean_expression 2) { /* 当布尔表达式 2 为真时执行 */ } }
可以嵌套 else if...else,方式与嵌套 if 语句相似。
实例
int num = 42;//用42是因为42是答案,最终的答案,是生命、宇宙以及任何事情的终极答案。 if (num>100) { Console.WriteLine("Make sure it‘s within 100."); } else if(num<50) { if (num > 25) { if (num > 30) { if (num > 40) { Console.WriteLine("..."); } } } }
C# switch 语句
一个 switch 语句允许测试一个变量等于多个值时的情况。每个值称为一个 case,且被测试的变量会对每个 switch case 进行检查。
语法
C# 中 switch 语句的语法:
switch(expression){ case constant-expression : statement(s); break; case constant-expression : statement(s); break; /* 可以有任意数量的 case 语句 */ default : /* 可选的 */ statement(s); break; }
switch 语句必须遵循下面的规则:
- switch 语句中的 expression 必须是一个整型或枚举类型,或者是一个 class 类型,其中 class 有一个单一的转换函数将其转换为整型或枚举类型。
- 在一个 switch 中可以有任意数量的 case 语句。每个 case 后跟一个要比较的值和一个冒号。
- case 的 constant-expression 必须与 switch 中的变量具有相同的数据类型,且必须是一个常量。
- 当被测试的变量等于 case 中的常量时,case 后跟的语句将被执行,直到遇到 break 语句为止。
- 当遇到 break 语句时,switch 终止,控制流将跳转到 switch 语句后的下一行。
- 不是每一个 case 都需要包含 break。如果 case 语句为空,则可以不包含 break,控制流将会 继续 后续的 case,直到遇到 break 为止。
- C# 不允许从一个开关部分继续执行到下一个开关部分。如果 case 语句中有处理语句,则必须包含 break 或其他跳转语句。
- 一个 switch 语句可以有一个可选的 default case,出现在 switch 的结尾。default case 可用于在上面所有 case 都不为真时执行一个任务。default case 中的 break 语句不是必需的。
- C# 不支持从一个 case 标签显式贯穿到另一个 case 标签。如果要使 C# 支持从一个 case 标签显式贯穿到另一个 case 标签,可以使用 goto 一个 switch-case 或 goto default。
流程图
实例
//switch int count = 42; switch (count) { case 618: Console.WriteLine("golden section"); break; case 42: Console.WriteLine("The answer to everything"); break; default: Console.WriteLine("The any numbers."); break; }
C# 嵌套 switch 语句
可以把一个 switch 作为一个外部 switch 的语句序列的一部分,即可以在一个 switch 语句内使用另一个 switch 语句。即使内部和外部 switch 的 case 常量包含共同的值,也没有矛盾。
语法
C# 中 嵌套 switch 语句的语法:
switch(ch1) { case ‘A‘: printf("这个 A 是外部 switch 的一部分" ); switch(ch2) { case ‘A‘: printf("这个 A 是内部 switch 的一部分" ); break; case ‘B‘: /* 内部 B case 代码 */ } break; case ‘B‘: /* 外部 B case 代码 */ }
实例
using System; namespace DecisionMaking { class Program { static void Main(string[] args) { int a = 100; int b = 200; switch (a) { case 100: Console.WriteLine("这是外部 switch 的一部分"); switch (b) { case 200: Console.WriteLine("这是内部 switch 的一部分"); break; } break; } Console.WriteLine("a 的准确值是 {0}", a); Console.WriteLine("b 的准确值是 {0}", b); Console.ReadLine(); } } }
当上面的代码被编译和执行时,它会产生下列结果:
这是外部 switch 的一部分 这是内部 switch 的一部分 a 的准确值是 100 b 的准确值是 200
? : 运算符
条件运算符 ? :,可以用来替代 if...else 语句。它的一般形式如下:
Exp1?Exp2:Exp3;
其中,Exp1、Exp2 和 Exp3 是表达式。请注意,冒号的使用和位置。
? 表达式的值是由 Exp1 决定的。如果 Exp1 为真,则计算 Exp2 的值,结果即为整个 ? 表达式的值。如果 Exp1 为假,则计算 Exp3 的值,结果即为整个 ? 表达式的值。
实例
求组合问题
public static void getCombination(int n,int m) { //n为下标 m为上标 m<=n //求法为 n(n-1)(n-2)...(n-m+1)/1*2...*m //可等于 n!/m!(n-m)! if (m <= n) { if (m == 0 || m == n) { Console.WriteLine(1); }else if (m == 1 || m == (n - 1)) { Console.WriteLine(n); } else { int s = calculate(n); int p = calculate(m) * calculate(n - m); Console.WriteLine(s/p); } } else { Console.WriteLine("m>n!"); } } public static int calculate(int n) { //直到n=1 n(n-1)(n-2)...*1 =n! return n == 1 ? 1 :n*calculate(n - 1); }
getCombination(4,1); getCombination(4,3); getCombination(4,0); getCombination(4,4); getCombination(4,2);
4 4 1 1 6