Alphabet Pattern

Cpp program to display alphabet pyramid pattern

Cpp program to display  alphabet pyramid pattern

In this tutorial, we will discuss the concept of the CPP program to display alphabet pyramid pattern

In this post, we will learn how to displayed  Pyramid triangle alphabet pattern  using for loop or nested for loop in C++programming language

here, we displayed some alphabet pyramid triangle program with coding using nested for loop and also we get input from the user using scanf() function in C

Pattern programs

The user can provide numbers as they wish and get the alphabet pattern according to their input

Program 1

Pyramid triangle alphabet pattern 1

#include <iostream>
#include <conio.h>
using namespace std;

int main()
{
    int i,j,rows;
    cout<<"Enter the number of rows\n";
    cin>>rows;

    for(i=1; i<=rows; i++){//parent for loop
            for(j=1; j<=rows-i; j++){
            cout<<" ";//print space for pyramid shape
            }
            for(j=1; j<=i; j++){
            cout<<((char)(j+64));
              }//make right site of pyramid

            for(j=i-1; j>=1; j--){
                cout<<((char)(j+64));
            }//make left site of pyramid
            cout<<"\n";
    }
    getch();
    return 0;
}

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

Enter the number of rows
6
                 A
              ABA
           ABCBA
        ABCDCBA
     ABCDEDCBA
  ABCDEFEDCBA

 

Program 2

Pyramid triangle alphabet pattern 2

#include <iostream>
#include <conio.h>
using namespace std;

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
    for(i=1; i<=rows; i++){
        for(j=1; j<=rows-i; j++){
        cout<<" ";//print space for initial part of pyramid
        }
        for(j=i; j>0; j--){
            cout<<((char)(j+64));
        }
        for(j=2; j<=i; j++){
            cout<<((char)(j+64));
        }
        cout<<"\n";
    }
    getch();
    return 0;
}

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

Enter the number of rows
6
          A
        BAB
      CBABC
    DCBABCD
  EDCBABCDE
FEDCBABCDEF

 

Similar post

Java program triangle alphabet pattern using while loop

C++ program triangle alphabet pattern using while loop

Java program to display Binary Pyramid pattern

C++ program to display Binary Pyramid pattern

C program to display hollow diamond star pattern

C++ program to display hollow diamond star pattern

 

Java code to print Rhombus and hollow Rhombus star pattern

C program to display Mirrored Rhombus  hollow Mirrored Rhombus star pattern

C++ program to display Rhombus  hollow Rhombus star pattern

 

Java program to display Parallelogram star pattern using while loop

C program to display Parallelogram star pattern using for loop

C++ program to display mirrored Parallelogram star pattern using for loop

 

 

 

Suggested for you

Operator in Java language

Data type in Java language

For loop in Java language

While loop in Java language

Nested for loop in Java language

Nested while loop in Java language

 

Operator in C++ language

Data type in C++ language

For loop in C++ language

While loop in C++ language

Nested for loop in C++ language

Nested while loop in C++ language

 

Operator in C language

For loop in C language

While loop in C language

Nested for loop in C language

Nested while loop in C language

 

 

C program to print Floyd's triangle alphabet pattern
C program to display alphabet pyramid pattern
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

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 days ago

C# inverted full pyramid star pattern

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

3 weeks ago

C# Full Pyramid star pattern program

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

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

2 months ago