
how to print from a-z, A-Z with exact order using for loop?
Thanks for all concern.

Print A-Z using for loop
class Loops{
public static void main(String[] args){
for(char ch='a';ch<='z';ch++){
System.out.print(ch+" ");
}
System.out.println();
for(char ch='A';ch<='Z';ch++){
System.out.print(ch+" ");
}
}
}