You are on page 1of 1

import java.io.

*;
import java.util.*;
class PrintAlphabetWithWhileLoop
{
public static void main(String args[])
{
char ch = 'a';
while(ch<='z')
{
System.out.println(ch);
ch++;
}
}
}

You might also like