C++ Program to Print Alphabet Triangle

There are different triangles that can be printed.

Triangles can be generated by alphabets or numbers.

In this C++ program, we are going to print alphabet triangles.

Let's see the C++ example to print alphabet triangle.

 

#include<iostream>

using namespace std;


int main() {
char ch='Z';
int i, j,k,m;
for (i=1;i<=5;i++) {

for(j=5;j>=i;j--)
cout<<" ";
for (k=1;k<=i;k++)
cout<<ch++;
ch--;
for(m=1;m<i;m++)
cout<<--ch;
cout<<"\n";
ch='A';
}
return 0;
}

 

 

xfer from  https://www.javatpoint.com/cpp-program-to-print-alphabet-triangle

posted @ 2019-05-18 10:56  Poission  阅读(146)  评论(0编辑  收藏  举报