while (true)
{
Console.WriteLine("请输入用户名:");
string strName = Console.ReadLine();
Console.WriteLine("请输入密码:");
string strPwd = Console.ReadLine();
if (strName == "admin" && strPwd == "888888")
{
Console.WriteLine("登录成功!");
return;
}
else
{
Console.WriteLine("用户名或密码错误!请重新输入!");
}
}
Console.ReadKey();
如果,你要if-else中进行循环,也可以用while比如:while(strName!="admiin"){} //只要用户名不正确,就一直循环让输入用户名,密码也是一样 |