C#写一程序:生成一个随机数,在1-100之间,从键盘输入数字,如果输入的数字等于随机数,游戏结束,如果输

2024-12-27 00:02:28
推荐回答(3个)
回答1:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
while (true)
{
Console.WriteLine("请输入一个1-100的整数");
int a = new Random().Next(1, 100);
string s = Console.ReadLine();
bool ab=true;
foreach (char c in s)
{
ab = char.IsNumber(c);
}
if (ab)
{
int b = Convert.ToInt32(s);
if (b>a)
{
Console.WriteLine("你输入的大了");
}
else if (b {
Console.WriteLine("你输入的小的");
}
else
{
break;
}

}
else
{
Console.WriteLine("你错了");
}
}

}
}
}

回答2:

这么简单的程序,你就自己做吧,要不就白学了

回答3:

路过顺便BS下LZ