A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© yuanzhen 中级黑马   /  2016-4-30 13:25  /  187 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.util.*;
class PlayGame {
        public static void main(String[] args) {
                Scanner sc = new Scanner(System.in);
                System.out.println("请输入您猜想的一个1~100的数");
                int x = (int)(Math.random()*10)+1;
                while (true) {
                        int y =sc.nextInt();
                        if (y>100 || y<=0) {
                                System.out.println("您的输入有误,请重新输入");
                        }else if (y>x) {
                                System.out.println("大了");
                        }else if (y<x) {
                                System.out.println("小了");
                        }else {
                           System.out.println("恭喜您答对了");
                           break;
                        }
                }
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马