本文主要是介绍猜数字游戏 猜出1-100随机数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原文地址:猜出1-100随机数 (改进,优化) 作者:陈振亚czy
namespace keshanglianxi7._3_1
{class Program{static void Main(string[] args){CaiCaiLe();Console.WriteLine("再来一次?");string s =Console.ReadLine();if (s=="y"){CaiCaiLe();}else{Console.WriteLine("游戏结束!想重新开始请再次运行程序。");}Console.ReadLine();}static void CaiCaiLe(){Random r =new Random();int target= r.Next(1, 100);int count= 0;while(true){int input =int.Parse(Console.ReadLine());count++;if (target == input){Console.WriteLine("猜对了,这是第{0}次:" , count);break;}else if(target >input){Console.WriteLine("猜小了,这是第{0}次: " ,count);}else if (target <input){Console.WriteLine("猜大了,这是第{0}次: " ,count);}}}}
}
这篇关于猜数字游戏 猜出1-100随机数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!