Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Java program to display English alphabets
Following is an example to display English alphabets A to Z.
Example
public class DisplayingAtoZ {
public static void main(String args[]){
char ch;
System.out.println("List of alphabets are ::");
for(ch = 'A'; ch <= 'Z'; ch++ ){
System.out.print(ch+" ");
}
}
}
Output
List of alphabets are :: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Advertisements
