Print the Number table
/* Printing table
5
5 4
5 4 3
5 4 3 2
5 4 3 2 1
*/
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=5;i>0;i--)
{
for(j=5;j>=i;j--)
{
printf("%2d",j);
}
printf("\n");
}
getch();
}
5
5 4
5 4 3
5 4 3 2
5 4 3 2 1
*/
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=5;i>0;i--)
{
for(j=5;j>=i;j--)
{
printf("%2d",j);
}
printf("\n");
}
getch();
}
No comments
Post a Comment