C# 三元表达式

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _12三元表达式  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.             ////计算两个数字的大小 求出最大的  
  14.             //Console.WriteLine("请输入第一个数字");  
  15.             //int n1 = Convert.ToInt32(Console.ReadLine());  
  16.             //Console.WriteLine("请输入第二个数字");  
  17.             //int n2 = Convert.ToInt32(Console.ReadLine());  
  18.             ////            语法:  
  19.             ////表达式1?表达式2 :表达式3  
  20.             //int max = n1 > n2 ? n1 : n2;  
  21.             //Console.WriteLine(max);  
  22.             ////if (n1 > n2)  
  23.             ////{  
  24.             ////    Console.WriteLine(n1);  
  25.             ////}  
  26.             ////else  
  27.             ////{  
  28.             ////    Console.WriteLine(n2);  
  29.             ////}  
  30.             //Console.ReadKey();  
  31.   
  32.   
  33.             //提示用户输入一个姓名 只要输入的不是老赵  就全是流氓  
  34.             Console.WriteLine("请输入姓名");  
  35.             string name = Console.ReadLine();  
  36.   
  37.             string result = name == "老赵" ? "淫才呀" : "流氓呀";  
  38.             Console.WriteLine(result);  
  39.             Console.ReadKey();  
  40.   
  41.             //if (name == "老赵")  
  42.             //{  
  43.             //    Console.WriteLine("淫才呀");  
  44.             //}  
  45.             //else  
  46.             //{  
  47.             //    Console.WriteLine("流氓呀");  
  48.             //}  
  49.             Console.ReadKey();  
  50.   
  51.   
  52.         }  
  53.     }  
  54. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: