C# While Loop 不断重用第一个用户输入;
本文关键字:第一个 用户 输入 While Loop | 更新日期: 2023-09-27 18:32:09
正如这里的许多人所说,我是一个非常新的程序员,试图学习基础知识,以便我可以在未来掌握一些技能。我正在观看 Bob Tabor关于 C# 的 channel9 视频,并且正在学习很多东西,但是当我开始自己进行时,我发现有些事情我不明白。我正在为一个非常简单的文本游戏编写代码,我很清楚我的代码可能是混乱的,或者多余的,或者两者兼而有之。
话虽如此,它完美地执行了我想要它做的事情,除了一个小问题。如果我在开头输入"是"或"否",它会继续得很好。问题是如果用户输入的内容不正确,则选项;我希望他们收到一条消息,说明说是或否,然后回到开头再试一次。但是当它执行,获取该消息并返回时,它将简单地重新应用第一次的输入,我将陷入无限循环。我知道问题出在哪里,但由于我经验不足,我不确定如何解决问题。我将尝试复制/粘贴我的代码,以便您可以看到我的问题。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FirstSoloAttempt
{
class Program
{
static void Main(string[] args)
{
bool incorrectAnswer = true; //if user inputs anything other than yes or no, reloop to beginning
Console.WriteLine("Do you want to play a game?");
string answer1 = Console.ReadLine(); //somehow, need to allow this input to be changed second time
while (incorrectAnswer)
{
if (answer1.Contains("yes"))
{
incorrectAnswer = false;
Console.WriteLine("Great! Let's begin. Which door is the new car behind? It is behind door 1, door 2, or door 3?");
string answer2 = Console.ReadLine();
if (answer2.Contains("door 1"))
{
Console.WriteLine(" Your new car is a new 2016 Chevy Corvette! Congratulations!");
Console.WriteLine("Are you satisfied with your new car?");
string answer3 = Console.ReadLine();
if (answer3.Contains("yes"))
{
Console.WriteLine("Fantastic!");
}
else
{
Console.WriteLine("I'm sorry you are not satisfied. You may return it for a different car.");
}
}
else
{
Console.WriteLine("Oh! Bummer! You didn't win. Thanks for playing!");
}
}
else if (answer1.Contains("no"))
{
incorrectAnswer = false;
Console.WriteLine("Alright then! Goodbye!");
}
else
{
Console.WriteLine("I'm sorry, I didn't understand that. Please answer with yes or no.");
}
Console.ReadLine();
}
}
}
}
基本上,我的代码不允许我接收新的输入来更改程序循环的结果。我知道 ti 与从第一个字符串 answer1 读取输入的代码有关,那么我如何为所有后续尝试更改它呢?
提前感谢您的任何帮助!编码对我来说很快就变得有趣了,其他人的帮助社区是一个很大的积极因素。
你的Console.ReadLine
在th中,而循环永远不会分配给任何东西。
改变
Console.ReadLine();
自
answer1 = Console.ReadLine();
只需将更改您的 else 语句添加到以下内容中即可
else
{
Console.WriteLine("I'm sorry, I didn't understand that. Please answer with yes or no.");
Console.WriteLine("Do you want to play a game?");
answer1 = Console.ReadLine();
}
后一种Console.ReadLine()
不会改变第一个变量的状态
更改为var answer1 = Console.ReadLine();
你可能应该在你的主空中使用这样的东西。这将允许您继续读取输入,直到用户键入包含"yes"的内容。
string answer1 = Console.ReadLine();
while (answer1.Contains("yes") != true)
{
answer1 = Console.ReadLine();
}
这可能是一个很好的解决方案,因为一旦您为答案重新分配变量,就不必为下一个响应进行硬编码,并且会一直持续到客户端键入"yes"。
do-while 循环更适合您的情况。
do
{
string answer1 = Console.ReadLine();
//your existing code from while loop ...
}while(incorrectAnswer)