close

參考答案:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace CSD01
{
    class Program
    {
        static void Main(string[] args)
        {
            // TODO
            int eng, math;
            string level=null;

            try
            {
                Console.Write("請輸入學生的英文成績>");
                eng = int.Parse(Console.ReadLine());
                Console.Write("請輸入學生的數學成績>");
                math = int.Parse(Console.ReadLine());

                if (eng >= 60 && math >= 60)
                    level = "A";
                else if (eng < 60 && math < 60)
                    level = "C";
                else
                    level = "B";

                Console.WriteLine("該學生的英文成績為"+eng+",數學成績為"+math+",其等級為"+level);
            }catch(Exception)
            {
                Console.WriteLine("輸入錯誤,請重新執行");
            }
            

            Console.ReadLine();
        }

    }
}
 

執行結果:

 

 

 

 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Dino 的頭像
    Dino

    Dino`s Note

    Dino 發表在 痞客邦 留言(0) 人氣()