-3
所以我有這個登錄嘗試循環名爲'Inlogpoging'。 3次後,它需要給你的消息「登錄有限」。但是我在腳本的最後得到錯誤,它有什麼不對?不能調用int,即使我公開它
static void Main(string[] args)
{
for (int inlogpoging = 0; inlogpoging < 3; inlogpoging++)
{
Console.WriteLine("Status: " + status.Onaangemeld);
Console.Write("Gebruikersnaam:");
string Naam = Console.ReadLine();
Console.Write("Wachtwoord:");
string Wachtwoord = Console.ReadLine();
if (Naam == "administrator" && Wachtwoord == "SHARPSOUND")
{
Console.Clear();
Console.WriteLine("Status: " + status.Ingelogd);
Console.WriteLine("Welkom bij SoundSharp {0}!", Naam);
Console.ReadLine();
break;
}
Console.Clear();
Console.WriteLine("Helaas, gebruikersnaam of wachtwoord niet correct.");
}
if (int inlogpoging == 3); //Right here <--
{
Console.Clear();
Console.WriteLine("Login limited.");
}
}
它的語法錯誤'如果(inlogpoging == 3)'就足夠了,不要把分號有 – Chidchai
@未除幸運單一的空白行沒有幫助,它積極有害可讀性。這不是一個好的編輯 –