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;
}
}
}
}
|
|