运算符:if、else if、else、三元运算符、switch
原文英文,约200词,阅读约需1分钟。发表于: 。If,else if,else int x = 10; if(x < 5) { Console.WriteLine("Less than 5"); } else if(x == 10) { Console.WriteLine("Equal to 10"); } else { Console.WriteLine("Greater than...
文章介绍了条件语句的使用,包括if-else和switch语句。通过示例说明if-else的逻辑判断,x等于10时输出“等于10”。还介绍了三元运算符的用法,根据条件返回不同结果。switch语句通过day变量判断,day等于3时输出“星期三”。