C#基礎程式10000-7 學生成績if分支以及if else分支語句程式
阿新 • • 發佈:2021-10-03
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 繼續努力啊!"); } } } }
效果: