This blog is for Automation Test Engineers

Sunday, 27 August 2017

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



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


0

0 comments:

Post a Comment