
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+" ");
}
}
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.