ループがcorectであり、それは第二1を継続している間それでは、私が最初にした後に行う必要があります。.. uの人は私の手を与えることができることを望む:) Iamはところで始まるC#のプログラマーは、?Pwhileループが終了した後、次のステートメントを続行するにはどうすればよいですか?
こちら私のコードは次のとおりです。
bool correctAwnser = true;
Console.WriteLine("You selected Easy mode!" + "\n" + "First riddle..");
while (correctAwnser)
{
Console.WriteLine("The more you take, The more you leave behind. What am I?");
if (Console.ReadLine() == "Footsteps")
{
Console.WriteLine("That is correct! that is 5 points!");
points = easyPoints;
Console.WriteLine("You have " + points + " points");
correctAwnser = false;
}
else
{
Console.WriteLine("Sorry that is not correct!");
}
}
while (correctAwnser)
{
Console.WriteLine("Mr.Smith has 4 daughters. Each of his daugthers has a brother. How many children does Mr.Smith has?");
if(Console.ReadLine() == "5 children")
{
Console.WriteLine("That is correct. you gained 5 points!");
points = easyPoints + 5;
Console.WriteLine("You have a total of " + easyPoints + " points");
correctAwnser = false;
}
else
{
Console.WriteLine("Sorry that is not correct!");
}
}
ループを1つに結合し、correctAwnserをfalseに設定します。 –
AskAndWaitForCorrectAnswer(質問、回答)のような関数を作成し、必要な回数だけ呼び出します。 – smibe