Popular Posts

16. Write a program and show 1 22 333 4444 55555

16. Write a program and show
1
22
333
4444
55555


#include
#include
int main()
{
clrscr();
int i,j;
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
cout< }
getch();
return 0;
}

Output:
1
22
333
4444
55555

No comments: