#include<conio.h>
#include<iostream.h>
void main()
{
clrscr();
for (int i=10;i>=7;i--)
{ for (int j=10;j>=i;j--)
{ cout<<j;
}
cout<<"\n";
}
getch();
}
#include<iostream.h>
void main()
{
clrscr();
for (int i=10;i>=7;i--)
{ for (int j=10;j>=i;j--)
{ cout<<j;
}
cout<<"\n";
}
getch();
}
No comments:
Post a Comment