c语言:输入一个数,从高位向低位输出,如:输入12345,输出1 2 3 4 5
Posted 岩枭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言:输入一个数,从高位向低位输出,如:输入12345,输出1 2 3 4 5相关的知识,希望对你有一定的参考价值。
输入一个数,从高位向低位输出,如:输入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
本文出自 “岩枭” 博客,请务必保留此出处http://yaoyaolx.blog.51cto.com/10732111/1715562
以上是关于c语言:输入一个数,从高位向低位输出,如:输入12345,输出1 2 3 4 5的主要内容,如果未能解决你的问题,请参考以下文章