University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

O2.java 280B

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