close

參考答案:

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

namespace CSD01
{
    class Program
    {
        static void Main(string[] args)
        {
            // TODO
            string input = null;
            string type = null;
            bool isCheck = false;

            Console.Write("請輸入信用卡號碼前兩碼>");
            input = Console.ReadLine();

            switch (input)
            {
                case "03":
                    type = "聯合";
                    isCheck = true;
                    break;
                case "35":
                    type = "JCB";
                    isCheck = true;
                    break;
                case "45":
                    type = "MASTER";
                    isCheck = true;
                    break;
                case "54":
                    type = "VISA";
                    isCheck = true;
                    break;
                default:
                    isCheck = false;
                    break;
            }
            
            if(isCheck)
                Console.WriteLine("此卡片為{0}信用卡",type);
            else
                Console.WriteLine("非本店特約用戶");

            Console.ReadLine();
        }

    }
}
 

 

 

執行結果:

 

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

    Dino`s Note

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