1.

Program to print alphabets from Z to A in java

Answer»

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



Discussion

No Comment Found