Codeforcoding

Program for Display Alphabets in Java using ASCII value

Program for Display Alphabets in Java using ASCII value

In this article, we will discuss the concept of Program for Display Alphabets in Java using ASCII value

In this post, we are going to learn how to display all the upper case(A to Z) and lower case (a to z) Alphabets using ASCII value in Java  programming language

Program for Display Alphabets in Java using ASCII value
Alphabets

ASCII value of upper case Alphabets letters are between 65 – 90

ASCII value of lower case Alphabets letters are between 97 – 122

Code for Display Alphabets in Java using ASCII value

Program for print upper case and lower case Alphabets Using for loop

The program displays all the upper case and lower case alphabet letters between a to z using for loop in Java language

Program 1

public class DisplayAlphabetsfor{
public static void main(String args[]){
char ch;//char variable declaration
//Printing lower case Alphabets
System.out.println("Lower case Alphabets are: \n");
for(ch=97; ch<=122; ch++){//using ASCII value for lower case Alphabets
System.out.print(ch+" ");
//display Lower case Alphabets with space
}
System.out.print("\n");//move to next line

//Printing upper case Alphabets
System.out.println("Upper case Alphabets are: \n");
for(ch=65; ch<=90; ch++){//using ASCII value for upper case Alphabets
System.out.print(ch+" ");
//display Upper case Alphabets with space
}

}

}

When the above code is executed, it produces the following result

Display Alphabets in Java

 

In the above program, we are using two for loops, one is used to print upper case letters and another to print lower case letters

 

Approach

 

Program for print upper case and lower case Alphabets Using while loop

The program displays all the upper case and lower case alphabet letters between a to z using while loop in Java language

Program 2

public class DisplayAlphabetswhile{
public static void main(String args[]){
char ch;//char variable declaration
//Printing lower case Alphabets
System.out.println("Lower case Alphabets are: \n");
ch=97; 
while(ch<=122){//using ASCII value for lower case Alphabets
System.out.print(ch+" ");
//display lower case Alphabets with space
 ch++;
}
System.out.print("\n");//move to next line

//Printing upper case Alphabets
System.out.println("Upper case Alphabets are: \n");
ch=65;
while(ch<=90){//using ASCII value for upper case Alphabets
System.out.print(ch+" ");
//display upper case Alphabets with space
 ch++;
}

}

}

When the above code is executed, it produces the following result

Display Alphabets in Java

In the above program, we are using two while loops, one is used to print upper case letters and another to print lower case letters

 

Approach

 

Program for Print upper case and lower case Alphabets Using the do-while loop

The program displays all the upper case and lower case alphabet letters between using the do-while loop in Java language

Program 3

public class DisplayAlphabetsdowhile{
public static void main(String args[]){
char ch;//char variable declaration
//Printing lower case Alphabets
System.out.println("Lower case Alphabets are: \n");
ch=97; 
do{//using ASCII value for lower case Alphabets
System.out.print(ch+" ");
//display lower case Alphabets with space
 ch++;
}while(ch<=122);
System.out.print("\n");//move to next line

//Printing upper case Alphabets
System.out.println("Uppercase Alphabets are: \n");
ch=65;
do{//using ASCII value for upper case Alphabets
System.out.print(ch+" ");
//display upper case Alphabets with space
 ch++;
}while(ch<=90);

}

}

When the above code is executed, it produces the following result

Display Alphabets in Java

In the above program, we are using two do-while loops, one is used to print upper case letters and another to print lower case letters

 

Approach

 

Suggested for you

for loop in Java language

while loop in Java language

do-while loop in Java language

 

Similar post

Java program to print all upper case and lower case Alphabets

C++ program to print all upper case and lower case Alphabets

C program to print all upper case and lower case Alphabets

 

C Program for Display Alphabets in Java using ASCII value

Java Program for Display Alphabets in Java using ASCII value

C++ Program for Display Alphabets in Java using ASCII value

Python Program for Display Alphabets in Java using ASCII value

C++ Program for print all Alphabet between given range using loops
C Program for Display Alphabets using ASCII value
Exit mobile version