黑马程序员技术交流社区

标题: 测智商小游戏-代码 [打印本页]

作者: shuide    时间: 2015-10-11 22:03
标题: 测智商小游戏-代码
/*猜数字小游戏--测智商小游戏
* 需求:猜数字小游戏(数据在1-100之间)
利用Math.random()
思路:
猜选次数用计数器思想 count
随机一个数字Math.random()
*/
import java.util.Scanner;                                                        //引入包
class Test_Math {
        public static void main(String[] args) {

                Scanner sc = new Scanner(System.in);
                System.out.println("请输入一个数字1-100之间");
       
        int count = 0;                                                                        //定义count计数器
        int aa = (int)(Math.random() * 100 + 1);                //随机一个 数
       
        while (true) {
                int temp = sc.nextInt();
                if (temp < aa) {
                        count++;
                        System.out.println("小了");
                }
                else if (temp > aa) {
                        count++;
                        System.out.println("大了");
                }else {
                        count++;
                        System.out.println("对了");
                        if (count < 3) {
                                System.out.println("智商聪明" + " 猜的次数" + count);
                        }else if (count < 10) {
                                System.out.println("智商正常" + " 猜的次数" + count);
                        }else {
                                System.out.println("智商不聪明" + " 猜的次数" + count);
                        }
                        break;
                }
        }
        }

}
作者: 秦旭辉    时间: 2015-10-12 10:35
试了一下 有意思
作者: michael_wlq    时间: 2015-10-12 13:32
count++;直接放在 int temp = sc.nextInt();下面更好点
作者: 李金龙2015    时间: 2015-10-12 13:57
michael_wlq 发表于 2015-10-12 13:32
count++;直接放在 int temp = sc.nextInt();下面更好点

说得对.......




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2