********5.随机给出一个0至99(包括0和99)之间的数字,然后让你猜是什么数字。你可以随便猜一个数字,游戏会提示太大还是太小,
从而缩小结果范围。经过几次猜测与提示后,最终推出答案。
提示:用Random类的Next方法产生数据
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("系统会自动生成一个1至100中的随机整数 :");
Console.WriteLine("请输入你想猜的数:");
string s=Console.ReadLine();
int s1=Convert.ToInt32(s);
Random random =new Random();
for (int i = 0; i < 10; i++)
{
int realNumber = random.Next(100);
while (s1 != realNumber)
{
//Scanner reader =new Scanner(System.in);
if (s1 > realNumber)
Console.WriteLine("猜大了,请再次尝试:");
else
Console.WriteLine("猜小了,请再次尝试:");
s = Console.ReadLine();
s1 = Convert.ToInt32(s);
}
Console.WriteLine("恭喜你!猜对了!!!");
}
}
}
}
猜数字游戏
最新推荐文章于 2020-04-01 13:46:30 发布