在Java中,可以使用條件語句來控制輸入數字的范圍。以下是一個示例代碼:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("請輸入一個數字:");
int num = scanner.nextInt();
if (num >= 0 && num <= 100) {
System.out.println("輸入的數字在0到100的范圍內!");
} else {
System.out.println("輸入的數字不在0到100的范圍內!");
}
}
}
在上述代碼中,首先創建了一個Scanner對象來接收用戶輸入。然后使用nextInt()方法獲取用戶輸入的整數。使用條件語句if來判斷輸入的數字是否在0到100的范圍內,如果是則輸出相應的提示信息,否則輸出另外的提示信息。