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

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

筛选

用字符串自定义函数分离

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

两种非常简单的法子

摘要:#include<stdio.h> int main(void) {     int n;     scanf("%d", &n);     int a[100];     int i =……