Alphabet Pattern

Cpp program triangle alphabet pattern using while loop

Cpp program triangle alphabet pattern using while loop

In this tutorial, we will discuss the Cpp program triangle alphabet pattern using while loop

In this post, we will learn how to displayed  Floyd’s triangle alphabet pattern  using while loop or nested while loop in C++ programming language

here, we displayed some alphabet Floyd’s triangle program with coding using nested while loop and also we get input from the user using cin() function in C++ language

Pattern programs

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

Triangle alphabet pattern 1

Program 1

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

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
   cout<<"\n";
    i=1;
   while(i<=rows){
        j=1;
    while(j<=i){
        cout<<(char)(i+64);
        j++;
    }
    i++;
    cout<<"\n";
    }
getch();
    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows
6

A 
BB
CCC
DDDD
EEEEE
FFFFFF

Triangle alphabet pattern 2

Program 2

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

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
   cout<<"\n";
    i=1;
   while(i<=rows){
        j=1;
    while(j<=i){
        cout<<(char)(j+64);
        j++;
    }
    i++;
    cout<<"\n";
    }
getch();
    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows
6

A
AB
ABC
ABCD
ABCDE
ABCDEF

Triangle alphabet pattern 3

Program 3

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

using namespace std;

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
cout<<"\n";
    i=1;
    while(i<=rows){
        j=i;
        while(j<=rows){
          cout<<((char)(i+64));
          j++;
        }
        i++;
        cout<<"\n";
    }

getch();
    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows
6

AAAAAA
BBBBB
CCCC
DDD
EE
F

Triangle alphabet pattern 4

Program 4

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

using namespace std;

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
     cout<<"\n";
    i=rows;
    while(i>=1){
        j=i;
        while(j<=rows){
          cout<<((char)(j+64));
          j++;
        }
        i--;
        cout<<"\n";
    }
getch();

    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows
6

F
EF
DEF
CDEF
BCDEF
ABCDEF

Triangle alphabet pattern 5

Program 5

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

using namespace std;

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
     cout<<"\n";
    i=1;
    while(i<=rows){
        j=i;
        while(j>=1){
          cout<<((char)(j+64));
          j--;
        }
        i++;
        cout<<"\n";
    }
getch();

    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows
6

A
BA
CBA
DCBA
EDCBA
FEDCBA

Triangle alphabet pattern 6

Program 6

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

using namespace std;

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
     cout<<"\n";
    i=1;
    while(i<=rows){
        j=1;
        while(j<=i){
          cout<<((char)(rows-i+1+64));
          j++;
        }
        i++;
        cout<<"\n";
    }
getch();

    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows
6

F
EE
DDD
CCCC
BBBBB
AAAAAA

Triangle alphabet pattern 7

Program 7

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

using namespace std;

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
     cout<<"\n";
    i=rows;
    while(i>=1){
        j=rows;
        while(j>=i){
          cout<<((char)(j+64));
          j--;
        }
        i--;
        cout<<"\n";
    }
getch();

    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows
6

F
FE
FED
FEDC
FEDCB
FEDCBA

Triangle alphabet pattern 8

Program 8

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

using namespace std;

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
     cout<<"\n";
    i=rows;
    while(i>=1){
        j=1;
        while(j<=i){
          cout<<((char)(i+64));
          j++;
        }
        i--;
        cout<<"\n";
    }
getch();

    return 0;
}

When the above code executed, it produces the following results

Enter te number of rows
6

FFFFFF
EEEEE
DDDD
CCC
BB
A

Triangle alphabet pattern 9

Program 9

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

using namespace std;

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
     cout<<"\n";
    i=1;
    while(i<=rows){
        j=rows;
        while(j>=i){
          cout<<((char)(j+64));
          j--;
        }
        i++;
        cout<<"\n";
    }
getch();

    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows
6

FEDCBA
FEDCB
FEDC
FED
FE
F

Triangle alphabet pattern 10

Program 10

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

using namespace std;

int main()
{
    int i,j,rows;
    cout << "Enter the number of rows" << endl;
    cin>>rows;
     cout<<"\n";
    i=rows;
    while(i>=1){
        j=i;
        while(j>=1){
          cout<<((char)(j+64));
          j--;
        }
        i--;
        cout<<"\n";
    }
getch();

    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows
6

FEDCBA
EDCBA
DCBA
CBA
BA
A

Triangle alphabet pattern 11

Program 11

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

int main()
{
    int i,j,rows;
    char ch='A';
    cout<<"Enter the number of rows: ";
    cin>>rows;
    i=1;
    while(i<=rows)
    {
        j=1;
        while(j<=i){
            cout<<ch++<<" ";
            j++;
        }
        i++;
        cout<<"\n";
    }
    getch();
    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows: 6
A
B C
D E F
G H I J
K L M N O
P Q R S T U

Triangle alphabet pattern 12

Program 12

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

int main()
{
    int i,j,rows,num,count1;
    cout<<"Enter the number of rows: ";
    cin>>rows;
    i=1;
    while(i<=rows)
    {
        num=rows-1;
        count1=i;

        j=1;
        while(j<=i){
            cout<<(char)(count1+64)<<" ";
            count1=count1+num;
            num--;
            j++;
        }
        i++;
        cout<<"\n";
    }
    getch();
    return 0;
}


When the above code executed, it produces the following results

Enter the number of rows: 6
A
B G
C H L
D I M P
E J N Q S
F K O R T U

Triangle alphabet pattern 13

Program 13

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

int main()
{
    int i,j,rows;
    char ch='A';
    cout<<"Enter the number of rows: ";
    cin>>rows;
    i=1;
    while(i<=rows)
    {
        j=1;
        while(j<=(i*2-1)){
            cout<<((char)(j+64))<<" ";
            j++;
        }
        i++;
        cout<<"\n";
    }
    getch();
    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows: 6
A 
A B C
A B C D E
A B C D E F G
A B C D E F G H I
A B C D E F G H I J K

 

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 triangle alphabet pattern using while loop
Java code to triangle alphabet pattern using while loop
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

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…

1 month ago

Java program to check odd or even using recursion

Java program to check odd or even using recursion In this tutorial, we discuss a…

1 month ago