while训练_04
看完题目的答案:
csharp
namespace ConsoleApplication5
{
class Program
{
static void Main(st
//要求:只能输入yes或者y,输入其他就要求用户再次输入
string answer="";
while (answer != "yes" && answer != "no")
{
Console.WriteLine("请你输入yes或者no");
老师这段代码与要求不符合,应该把 "no"-->"y".