參考答案:
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();
}
}
}
執行結果:
留言列表