题解 1034: [编程入门]自定义函数之数字分离

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

简单明了的函数解法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>              #include <string.h>fan(char a[],int n){int i; for (i ……

用字符串自定义函数分离

摘要:解题思路:注意事项:注意'\0'不要漏掉参考代码:#include <stdio.h>#include <string.h>int main(){    char a[5];    gets(a);/……