黑马程序员技术交流社区

标题: 猜数字小游戏,终于脱稿敲出来了 [打印本页]

作者: 石头stone    时间: 2016-5-15 10:37
标题: 猜数字小游戏,终于脱稿敲出来了
import java.util.Scanner;
class Test1_Math {
        public static void main(String[] args) {
                Scanner sc = new Scanner(System.in);
                int a = (int)(Math.random() * 100) + 1;
                while (true) {
                        int b = sc.nextInt();
                        if (b > a) {
                                System.out.println("大了");
                        }else if (b < a) {
                                System.out.println("小了");
                        }else {
                                System.out.println("中了");
                                break;
                        }
                }
        }
}





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