fork download
  1. using System;
  2.  
  3. namespace first
  4. {class a{static void Main()
  5. {char Alphabet='A';
  6. while (Alphabet<='Z'){
  7. Console.WriteLine(Alphabet);
  8. Alphabet++;}
  9. }}}
Success #stdin #stdout 0.04s 24032KB
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