博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
猜数字
阅读量:4879 次
发布时间:2019-06-11

本文共 735 字,大约阅读时间需要 2 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {            Random rd = new Random();            int real = rd.Next(100) + 1;            Console.WriteLine("随即输入1-100的整数:");                       do            {                string s = Console.ReadLine();                int x = int.Parse(s);                if (x > real)             {                 Console.WriteLine("大了!

"); } else if (x < real) { Console.WriteLine("小了!

"); } else { Console.WriteLine("恭喜你猜对了!"); break; } } while (true); Console.ReadKey(); } } }

转载于:https://www.cnblogs.com/zsychanpin/p/7133908.html

你可能感兴趣的文章
算法提高 概率计算
查看>>
UVa 12716 - GCD XOR(筛法 + 找规律)
查看>>
Spring Cloud学习资料
查看>>
制作无广告启动盘
查看>>
python使用httplib2访问REST服务的例子
查看>>
经典代码(01)
查看>>
生成ico格式图标
查看>>
并查集hdu4424
查看>>
【异常】IOException parsing XML document from class path resource [xxx.xml]
查看>>
第五周作业
查看>>
COJ 2135 Day10-例1
查看>>
jdbc之分页查询
查看>>
PHP手动环境搭建之WAMP
查看>>
COJ 1003 WZJ的数据结构(三)ST表
查看>>
sbrk and coreleft
查看>>
树型DP
查看>>
怎么在ubuntu上使用pidgin登陆QQ
查看>>
思维的惰性
查看>>
2018-2019-2 网络对抗技术 20165115 Exp3 免杀原理与实践
查看>>
【Android】学习记录<1> -- 初识ffmpeg
查看>>