Alphabet

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

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

In this article, we will discuss the concept of C++ program to print all upper case and lower case Alphabets

In this post, we are going to learn how to display all the upper case and lower case Alphabets using loops c++ language

display lower case and upper case

C++ program to print all the Alphabets using for loop

The program displays all the upper case and lower case alphabet letters from a to z using for loop in C++ language

Program 1

#include <iostream>
#include <conio.h>

using namespace std;

int main()
{
    char ch;//char variable declaration
//Printing upper case Alphabets
cout<<"Uppercase Alphabets are: \n";
for(ch='A'; ch<='Z'; ch++){
cout<<ch<<" ";
//display uppercase Alphabets with space
}
cout<<"\n";//move to next line

//Printing lower case Alphabets
cout<<"\nLowercase Alphabets are: \n";
for(ch='a'; ch<='z'; ch++){
cout<<ch<<" ";

//display lowercase Alphabets with space
}
cout<<"\n";//move to next line

    //printf("Hello world!\n");
    getch();
    return 0;
}

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

Output 1

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

 

C++ code to display all the Alphabets using while loop

The program displays all the upper case and lower case alphabet letters from a to z using while loop in C++ language

Program 2

#include <iostream>
#include <conio.h>

using namespace std;

int main()
{
    char ch;//char variable declaration
//Printing upper case Alphabets
cout<<"Uppercase Alphabets are: \n";
ch='A';
while( ch<='Z'){
cout<<ch<<" ";
//display uppercase Alphabets with space
 ch++;
}
cout<<"\n";//move to next line

//Printing lower case Alphabets
cout<<"\nLowercase Alphabets are: \n";
ch='a';
while(ch<='z'){
cout<<ch<<" ";

//display lowercase Alphabets with space
ch++;
}
cout<<"\n";//move to next line

    //printf("Hello world!\n");
    getch();
    return 0;
}

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

Output 2

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

 

C++ code to display all the Alphabets using do-while loop

The program displays all the upper case and lower case alphabets letters from a to z using do-while loop in C++ language

Program 3

#include <iostream>
#include <conio.h>

using namespace std;

int main()
{
    char ch;//char variable declaration
//Printing upper case Alphabets
cout<<"Uppercase Alphabets are: \n";
ch='A';
do{
cout<<ch<<" ";
//display uppercase Alphabets with space
 ch++;
}while( ch<='Z');
cout<<"\n";//move to next line

//Printing lower case Alphabets
cout<<"\nLowercase Alphabets are: \n";
ch='a';
do{
cout<<ch<<" ";

//display lowercase Alphabets with space
ch++;
}while(ch<='z');
cout<<"\n";//move to next line

    //printf("Hello world!\n");
    getch();
    return 0;
}

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

Output 3

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

  • We will declare a counter variable “ch” in loops (for loop, while loop and do-while loop) and initialize it by “a”(for print lower case) or “A” (for print upper case);
  • The program checks the given condition(ch<=”z” (lower case) or ch<=”Z“(Upper case), if the condition is true, alphabets will be printed
  • if the condition is false – loops will be terminated

 

Suggested for you

for loop in C++ language

while loop in C++ language

do-while loop in C++ language

 

while loop in Java language

do-while loop in Java language

for 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

Java code to print all upper case and lower case Alphabets between the given range

C++ code to print all upper case and lower case Alphabets between the given range

C code to print all upper case and lower case Alphabets between the given range

 

 

 

 

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

 

Java code to print all upper case and lower case Alphabets between the given range

C++ code to print all upper case and lower case Alphabets between the given range

C code to print all upper case and lower case Alphabets between the given range

 

Python code to check whether a character is vowel or consonant
Java program to print all upper case and lower case Alphabets
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

Explanation of one dimensional array (Data structure)

Explanation of one dimensional array In this post, we will discuss the concept of "Explanation…

2 days ago

Python program to calculate the sum of odd and even numbers in a list

Python program to calculate the sum of odd and even numbers in a list In…

5 days ago

Python code to Calculate sum of odd and even in a list

Python code to Calculate sum of odd and even in a list In this tutorial,…

1 week ago

How to find reverse number using method in Java

How to find reverse number using method In this article, we will discuss the concept…

2 weeks ago

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

1 month ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

2 months ago