fork download
  1. class Characters {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. char c;
  6.  
  7. for(c = 'A'; c <= 'Z'; ++c)
  8. System.out.print(c + " ");
  9. }
  10. }
Success #stdin #stdout 0.05s 27776KB
stdin
Standard input is empty
stdout
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z