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