我正在玩 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)。并输入另一个选择,如果我按下任何其他键,它将退出程序。