University stuff.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415
  1. import java.util.Scanner;
  2. class O2 {
  3. public static void main(String[] args) {
  4. Scanner s = new Scanner(System.in);
  5. while (true) {
  6. int i = s.nextInt();
  7. if (i == 10) {
  8. System.out.println("Warning: 10 detected. You will now be terminated.");
  9. break;
  10. }
  11. }
  12. }
  13. }