University stuff.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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