Java program to display English alphabets


Following is an example to display English alphabets A to Z.

Example

Live Demo

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

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 13-Mar-2020

251 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements