欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c语言:输入一个数,从高位向低位输出,如:输入12345,输出1 2 3 4 5

程序员文章站 2022-03-26 09:27:01
输入一个数,从高位向低位输出,如:输入12345,输出1  2  3  4  5 程序: #include int ma...
输入一个数,从高位向低位输出,如:输入12345,输出1  2  3  4  5

程序:

#include<stdio.h>
int main()
{
    int i=0;
    char s[1000000];
    gets(s);
    while(s[i]!=0)
    {
        printf("%c\n",s[i]);
        i++;
    }
    return 0;
}

 

结果:

12345

1

2

3

4

5

 

 

 

             press any key to continue

234567

2

3

4

5

6

7

 

 

 

             press any key to continue