效果

代碼
{
? ? ? ? ? ? Console.WriteLine("請輸入用戶名");
? ? ? ? ? ? string name = Console.ReadLine();
? ? ? ? ? ? if (name!="admin")
? ? ? ? ? ? {
? ? ? ? ? ? ? ? Console.WriteLine("用戶名錯誤請關(guān)閉重試");
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? ? Console.WriteLine("請輸入密碼");
? ? ? ? ? ? ? ? string mima = Console.ReadLine();
? ? ? ? ? ? ? ? if (mima=="mypass" )
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? Console.WriteLine("登錄成功");
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? else
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? Console.WriteLine("密碼錯誤登錄失敗請重試");
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? Console.ReadKey();