Monday, 13 August 2018

Pattern-6

===========================================================================
                                CODING



#include<all.h>

void main()
{
    clrscr();
    int n,m,i,j;
    char c;
    cout<<"Enter number: ";
    cin>>n;
    m=n;
    clrscr();
    for(i=1,c=65;i<=n;i++)
    {
for(j=1;j<=m;j++)
{
   cprintf("%c ",c);
}
m=m-1;
cout<<"\n";
c=c+1;
    }
    getch();
}




===========================================================================


                                OUTPUT


No comments:

Post a Comment