猜数字的例子
using System;class Myclass
{
static void Main()
{
Random a=new Random();
int m=a.Next(1,101);
int i=0;
int b;
do
{
i++;
Console.WriteLine("please input your number:");
b=int.Parse(Console.ReadLine());
if(m<b)
{
Console.WriteLine("你猜的大了,需要继续努力呀!");
}
else if (m>b)
{
Console.WriteLine("你猜的小了,需要继续努力呀!");
}
else if (m==b)
{
if(i>5)
Console.WriteLine("你猜对了,不过你已经猜了"+i+"次.");
else
Console.WriteLine("你太聪明了,猜了"+i+"次就猜对了。");
}
Console.WriteLine("第"+i+"次。");
}
while(b!=m);
System.Threading.Thread.Sleep(30000);
}
}