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. char upperCase, lowerCase;
  13. int i;
  14. upperCase = 'A';
  15. lowerCase = 'a';
  16.  
  17. for (i = 1 ;i <= 26; i++) {
  18. System.out.println(upperCase + "\t" + lowerCase);
  19. upperCase++;
  20. lowerCase++;
  21. }
  22. }
  23. }
Success #stdin #stdout 0.11s 320256KB
stdin
Standard input is empty
stdout
A	a
B	b
C	c
D	d
E	e
F	f
G	g
H	h
I	i
J	j
K	k
L	l
M	m
N	n
O	o
P	p
Q	q
R	r
S	s
T	t
U	u
V	v
W	w
X	x
Y	y
Z	z