Q:

Write A C++ Program To Print REVERSE Of Half Pyramid Using Alphabet

0

Write A C++ Program To Print REVERSE Of Half Pyramid Using Alphabet

A B C D E F
   G H  I  J K
       L M N O
          P  Q R
              S T
                U

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include<iostream>
using namespace std;

int main()
{
int i,j,n,k;
cout<<"Enter the No Of Row\n";
cin>>n;
char c='A';
    for(i=0;i<=n;i++)
    {
       for(j=0;j<=i;j++)
       {
    cout<<" ";
       }
       for(k=n-i-1;k>=0;k--)
       {
   cout<<c;
   c++;
       }
       cout<<"\n";
    }
    return 0;
}

 

Output:

Enter the No of Row

6

A B C D E F
   G H  I  J K
       L M N O
          P  Q R
              S T
                U

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now