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

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

筛选

自定义函数之数字分离

摘要:解题思路:题目求只是四位数注意事项:参考代码:#include<stdio.h>int main(){   int a;   scanf("%d",&a);   if(a>=1000&&a<=1000……

简单直接易懂

摘要:解题思路:注意事项:输入输出要用%c,%d没法将数字单独拆开参考代码:#include<stdio.h>int main(){ char a[4],i; for(i=0;i<4;i++){ scanf……

平平淡淡才是真

摘要:# 简单完成任务 ```c #include main() { void separation(char []); char a[4]; scanf("%s",a); ……

简洁的题解

摘要:解题思路:对字符串进行操作注意事项:无参考代码:x = input()def f(string):    print(string.replace(&#39;&#39;,&#39; &#39;).st……

自定义拆分函数

摘要:解题思路:mask标注几位数,从而判断要取的位置注意事项:参考代码:#include<stdio.h>int caifen (int a);int main (){int a ;scanf("%d",……

易如反掌之自定义函数之数字分离

摘要:解题思路:遍历循环字符串长度,依次输出。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char str[100];    sc……