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("你错了");
}
}
}
}
}
这么简单的程序,你就自己做吧,要不就白学了
路过顺便BS下LZ