方法/函數(shù)5(混合輸出—包含string和bool)
static? bool Islogin(string name,string pwd,out string msg)
{
? ? ? ? ?if (name == "admin" & pwd == "888888")
? ? ? ? ?{ msg = "登陸成功" ; return true; }
? ? ? ? ?else if (name == "admin")
? ? ? ? ?{ msg = "密碼錯誤"; return false; }
? ? ? ? ?else if (pwd == "888888")
? ? ? ? ?{ msg = "密碼錯誤"; return false; }
? ? ? ? ?else
? ? ? ? ?{ msg = "未知錯誤"; return false; }
}
static void Main(string[] args)
{
? ? ? ??Console.WriteLine("請輸入用戶名:");
? ? ? ? string username = Console.ReadLine();
? ? ? ? Console.WriteLine("請輸入密碼:");
? ? ? ? string password = Console.ReadLine();
? ? ? ??string msg;
? ? ? ? bool b=Islogin(username,password,out msg);
? ? ? ? Console.WriteLine("登錄結(jié)果{0}",b);
? ? ? ? Console.WriteLine("登錄信息{0}", msg);
}
標(biāo)簽: