🎯今日问题:
猜数游戏:由机器产生一个数,用户输入自己所猜的数,机器判断猜数的结果。
知识点运用:随机函数的使用,输入输出语句,判断语句的引入。
🎯答案:
Random ran=new Random(); int x=ran.nextInt(10); System.out.println("请输入你猜的数字(0~10)"); for(;;) { Scanner scan =new Scanner(System.in); int y=scan.nextInt(); if (y==x) { System.out.println("恭喜你答对了!!!"); break; } else if(y<x) { System.out.println("猜小了!!!"); } else if (y>x) { System.out.println("猜大了!!!"); } }