This blog is for Automation Test Engineers

Sunday, 27 August 2017

How to print all characters from a to z by using for loop


char ch;
for(ch='a';ch<='z';ch++){
System.out.print(ch);
}


0

0 comments:

Post a Comment