码迷,mamicode.com
首页 > 其他好文 > 详细

猜数字小游戏(创建一个控制台。。。原理:random 产生随机数)

时间:2014-11-30 21:25:03      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   sp   on   bs   cti   ad   as   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace eluosi
{
    class Program
    {
        static void Main(string[] args)
        {
            new Program().play();
        }
        void play()
        {
            Random r = new Random();
            int j = r.Next(1, 10);
            int i;
            int n=1;
            Console.Write("猜猜随机数是多少(1~10):");
            do
            {
                i = int.Parse(Console.ReadLine());
                if (i == j)
                {
                    Console.Write("恭喜你在第{0}次猜对了", n);
                }
                else
                {
                    if (i < j)
                    {
                        Console.Write("第{0}次,小了", n);
                    }
                    else
                    {
                        Console.Write("第{0}次,大了", n);
                    }
                }
                n++;
            } while (i != j);
            Console.ReadLine();
        }
    }
}

猜数字小游戏(创建一个控制台。。。原理:random 产生随机数)

标签:io   ar   os   sp   on   bs   cti   ad   as   

原文地址:http://www.cnblogs.com/zhang-2052975439/p/4133624.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!