語法:
import java.io.*;
public class Slime {
public static void main(String[] args) throws IOException {
BufferedReader bfr = new BufferedReader(
new InputStreamReader(System.in));
int guess = 0, ans, min = 1, max = 100;
ans = (int) (Math.random() * 100);
while (guess != ans) {
System.out.print("請輸入數字,範圍在 " + min + " 和 " + max + " 之間 : ");
guess = Integer.parseInt(bfr.readLine());
if (guess > ans)
max = guess;
else if (guess < ans)
min = guess;
else
break;
}
System.out.println("答對了!");
}
}
語法:
請輸入數字,範圍在 1 和 100 之間 : 50
請輸入數字,範圍在 50 和 100 之間 : 75
請輸入數字,範圍在 75 和 100 之間 : 85
請輸入數字,範圍在 75 和 85 之間 : 80
請輸入數字,範圍在 75 和 80 之間 : 77
請輸入數字,範圍在 77 和 80 之間 : 78
答對了!