一运用Random随机编程问题求助
运用Random ra=new Random();int rndInt=ra.Next(1,100);方法随机产生一个1~100之间的一个数,并由玩家进行猜测。提示玩家是猜大了还是猜小了或是猜对了。运行程序显示如下:“请输入一个整数(范围为1~100) 如果要退出,请输入0!否则输入1!”
选择输入1,输入你猜的数值,如果猜大了,显示“猜大了”,如果猜小了,显示“猜小了”,直到猜对为止,并输出一列语句:“恭喜你,猜对了!若继续猜测输入Y,若退出则输入N!请输入:”
继续游戏,直至输入N,退出游戏为止。
---------------------------------------------------
本人代码如下 求指点!
-----------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Random ra = new Random();
int rndInt = ra.Next(1, 100);
while(true)
{
Console.WriteLine("请输入一个整数(范围为1~100)");
Console.WriteLine("如果要退出,请输入0!否则输入1!");
int a = Console.Read();
if (a == 0)
break;
while (true)
{
Console.WriteLine("请输入:");
int r = Console.Read();
if (r > rndInt)
Console.WriteLine("猜大了!");
else if (r < rndInt)
Console.WriteLine("猜小了!");
else
{
Console.WriteLine("恭喜你,猜对了!");
break;
}
}
Console.WriteLine("若继续猜输入Y,若退出则输入N!");
int b = Console.Read();
if ((char)b == 'N')
return;
}
}
}
}