------数字分离----- 摘要:解题思路:利用字符数组来接受数据然后顺序打印即可法一用函数法二不用函数感觉比法一还简洁一点若说错了请多多包含注意事项:参考代码://法一:/*题目 1034: [编程入门]自定义函数之数字分离题目描述…… 题解列表 2023年06月08日 0 点赞 0 评论 96 浏览 评分:0.0
c++题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int check(int a){ int gewei = a%10; int …… 题解列表 2023年03月15日 0 点赞 0 评论 77 浏览 评分:0.0
自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void fun(char a[]) ;int main(){ char a[4]; gets(a); fun(a); …… 题解列表 2023年03月06日 0 点赞 0 评论 95 浏览 评分:9.9
自定义函数之数字分离(这样也行) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char arr[5]; gets(arr); int n = strlen…… 题解列表 2023年02月09日 0 点赞 0 评论 63 浏览 评分:9.9
自定义函数之数字分离(so easy) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int num; scanf("%d", &num); int a = num / 1000; int b = …… 题解列表 2023年02月08日 0 点赞 0 评论 62 浏览 评分:0.0
用字符串自定义函数分离 摘要:解题思路:注意事项:注意'\0'不要漏掉参考代码:#include <stdio.h>#include <string.h>int main(){ char a[5]; gets(a);/…… 题解列表 2023年01月11日 0 点赞 0 评论 63 浏览 评分:0.0
[编程入门]自定义函数之数字分离-字符数组解决方法(c语言) 摘要:解题思路:创建两个字符数组,一个用来输入数字,然后再把数字存入数组之后再存一个空格。参考代码:#include <stdio.h> #include <string.h> void cmp(cha…… 题解列表 2022年12月28日 0 点赞 0 评论 65 浏览 评分:9.9
数字分离简单函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a;int b,c,d,e;scanf("%d",&a);b=a/1000;e=a%10;d=a/10%1…… 题解列表 2022年12月26日 0 点赞 0 评论 57 浏览 评分:0.0
1034 题解简单易懂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int seperate(int m,int x,int y,int z,int w){ x=m/1000%10; y=m/100%1…… 题解列表 2022年12月10日 0 点赞 0 评论 47 浏览 评分:0.0
[编程入门]自定义函数之数字分离 c语言 递归求解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void separate(int n){ int temp=n%10; n/=10; if(n)separate(…… 题解列表 2022年12月07日 0 点赞 0 评论 87 浏览 评分:9.0