Alphabet Triangle Program in c++

Write a Program in c++ to show Alphabet Traingle .

#include<iostream.h>

#include<conio.h>

void main()

{

clrscr();

  char ch='A';

  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';

     }

  getch();

  } 


Download handwritten Notes of c++

Post a Comment

0 Comments