Program to print alphabets from Z to A in java
Answers
Answered by
2
Explanation:
Java program to print alphabets on screen, i.e., a, b, c, ..., z; in lower case.
Java source code
class Alphabets
{
public static void main(String args[])
{
char ch;
for (ch = 'a'; ch <= 'z'; ch++)
System.out.println(ch);
}
}
Hope it will help yu
Attachments:
Similar questions