fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.io.File;
  4. import java.io.FileNotFoundException;
  5. import java.util.Scanner;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12.  
  13. Scanner scanner = new Scanner(System.in);
  14.  
  15. int i = scanner.nextInt();
  16. System.out.println(i);
  17.  
  18. System.out.println("Bye...");
  19. scanner.close();
  20. }
  21. }
Runtime error #stdin #stdout #stderr 0.1s 380672KB
stdin
123katze
stdout
Standard output is empty
stderr
Exception in thread "main" java.util.InputMismatchException
	at java.util.Scanner.throwFor(Scanner.java:909)
	at java.util.Scanner.next(Scanner.java:1530)
	at java.util.Scanner.nextInt(Scanner.java:2160)
	at java.util.Scanner.nextInt(Scanner.java:2119)
	at Ideone.main(Main.java:15)