using System; using System.Linq; namespace ConsoleIf { class Program { static void Main(string[] args) { // Console.WriteLine("Hello World!"); // 1 需求逻辑:如果 成绩大于90分,输出a。 如果成绩大于等于80分,输出B.成绩大于登录70,输出C。 大于登录60分,输出d. /* 分别输入3个学生的成绩,进行比较。 成绩大于90分,输出a, 如果成绩大于等于80分,输出B.成绩大于登录70,输出C。 大于登录60分,输出d. */ int a = 90; Console.WriteLine("请输入学生张三的成绩分数:"); int b = Convert.ToInt32(Console.ReadLine()); // 如果用户输入的成绩大于90分,就执行下面的代码。否则就执行else 的代码语句。 if (b >= a) { Console.WriteLine("成绩大于90分, 奖励100块钱。"); } else { Console.WriteLine("成绩低于90分,继续努力不要停。"); } Console.WriteLine("请输入学生李四的成绩:"); int c = Convert.ToInt32(Console.ReadLine()); if (c >= a) { Console.WriteLine("成绩大于90分,可以休息一刻钟"); } else { Console.WriteLine("低于90分,休息一会,must 继续努力啊!"); } Console.WriteLine("请输入学生翠花的成绩:"); int d = Convert.ToInt32(Console.ReadLine()); if (d >= a) { Console.WriteLine("成绩大于90分,可以休息一刻钟"); } else { Console.WriteLine("低于90分,休息一会,must 继续努力啊!"); } } } }
效果: