java,c,c++,coding,college all java, c and c++ codes, makaut codes, wbut codes
java,c,c++,coding,college all java, c and c++ codes, makaut codes, wbut codes
/*
12345
1234
123
12
1 */
#include<stdio.h>
int main()
{
int n;
scanf("%d", &n);
for(int i=n; i>=1; i--)
{
for(int j=1; j<=i; j++)
{
printf("%d", j);
}printf("\n");
}
return 0;
}
Comments
Post a Comment