Program to illustrate char data type

#include<iostream.h>
#include<conio.h>
void main()
{
    int i=0,j=6,k=0;
    char x='A';
    clrscr();
    while((j/2)>=0)
    {
        for(i=0;i<=(j/2);i++)
            cout<<"  "<<char(x+i);
        i=i-2;
        for(;i>=0;i--)
            cout<<"  "<<char(x+i);
        j=j-2;
        k=k+1;
        cout<<"\n";
        for(i=0;i<=k;i++)
             cout<<"  ";
    }
    getch();
}

0 comments:

Post a Comment

 
 
 
 


Copyright © 2012 http://codeprecisely.blogspot.com. All rights reserved |Term of Use and Policies|