Sunday 18 September 2016

Number pattern N=39714

N=39714

3 9 1 7 4
9 1 7 4
1 7 4
7 4
4

code:

#include <stdio.h>

int main()
{
long n = 39714, i=1;
for(i=10;i<n;i*=10);

for (i=i/10; n>0; i/=10)
{
printf("%d\n", n);
n%=i;
}

return 0;
}



No comments:

Post a Comment

Featured post

The Thrill of Programming: Exploring the Satisfaction Behind the Code

Different individuals find satisfaction in programming for various reasons. Here are some common factors that tend to bring satisfaction to ...