C++ : generate the number as


                123454321
  1234321
    12321
      121
        1

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


#include<iostream>
#include<conio.h>

using namespace std;

int main()
{
int i,j,k,l;

for(i=5;i>=1;i--)
{
for(j=1;j<=i;j++)
{
cout<<j;
}
for(k=i-1;k>=1;k--)
{
cout<<k;
}
cout<<endl;
for(l=0;l<=5-i;l++)
{
cout<<" ";
}
}
getch();
return(0);
}

No comments:

Post a Comment