本文主要是介绍C#实现猜数游戏,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原文地址:C sharp 实现 猜数游戏 (产生0-100随机数,试试才几次能猜对) 作者:陈振亚czy
namespace lianxi6._29_1
{class Program{static void Main(string[] args){Random r =new Random();int b =r.Next(0, 100);int count= 1;Console.ReadLine("请输入您猜的数字:");cc:int a =int.Parse(Console.ReadLine());f(a,b);if (a ==b) { Console.Write("您猜对了,用了{0}次",count); }count++;gotocc;Console.ReadLine();}static void f(int a,int b){ if (a >b){Console.Write("您猜的数大了n");}else if (a< b){Console.Write("您猜的数小了n"); }}}
}
这篇关于C#实现猜数游戏的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!