fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  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. Scanner sc = new Scanner(System.in);
  13. String lang;
  14.  
  15. while((lang = sc.nextLine()) != null) {
  16. if (lang.length() % 5 > 0) {
  17. lang = lang + "_" + lang.toUpperCase();
  18. }
  19. System.out.println(lang);
  20. }
  21. }
  22. }
Runtime error #stdin #stdout #stderr 0.11s 29328KB
stdin
en_US
ja
pl
ar-EG
stdout
en_US
ja_JA
pl_PL
ar-EG
stderr
Exception in thread "main" java.util.NoSuchElementException: No line found
	at java.util.Scanner.nextLine(Scanner.java:1540)
	at Ideone.main(Main.java:15)