我在玩C#,我做了這個。C# - 如何跳到第一行?
{
string wichOp;
Console.WriteLine("Kaj je toni?");
Console.WriteLine("Izber med: -A -B -C -D -E");
wichOp = Console.ReadLine();
wichOp = wichOp.ToLower();
if (wichOp == "a")
{
Console.Write("Toni je BK");
}
else if (wichOp == "b")
{
Console.Write("Toni je PEDER");
}
else if (wichOp == "c")
{
Console.Write("Toniju Baloni");
}
else if (wichOp == "d")
{
Console.Write("Toni je buzi");
}
else if (wichOp == "e")
{
Console.Write("TONI ŠAMPION");
}
else
Console.WriteLine("Nisi vnesil pravilno izbiro");
}
}
}
我想要做的是與一個按鍵(R),我可以跳回到我的選擇(A,B,C,d,E)。然後輸入另一個選項,如果我按任何其他鍵將退出該程序。
你比較字符串錯誤,你應該考慮輸入的情況下。 – asawyer