------数字分离-----
摘要:解题思路:利用字符数组来接受数据然后顺序打印即可法一用函数法二不用函数感觉比法一还简洁一点若说错了请多多包含注意事项:参考代码://法一:/*题目 1034: [编程入门]自定义函数之数字分离题目描述……
c++题解 1034: [编程入门]自定义函数之数字分离
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int check(int a){ int gewei = a%10; int ……
自定义函数之数字分离
摘要:解题思路:注意事项:参考代码:#include <stdio.h>void fun(char a[]) ;int main(){ char a[4]; gets(a); fun(a); ……
自定义函数之数字分离(这样也行)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char arr[5]; gets(arr); int n = strlen……
自定义函数之数字分离(so easy)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int num; scanf("%d", &num); int a = num / 1000; int b = ……
用字符串自定义函数分离
摘要:解题思路:注意事项:注意'\0'不要漏掉参考代码:#include <stdio.h>#include <string.h>int main(){ char a[5]; gets(a);/……
[编程入门]自定义函数之数字分离-字符数组解决方法(c语言)
摘要:解题思路:创建两个字符数组,一个用来输入数字,然后再把数字存入数组之后再存一个空格。参考代码:#include <stdio.h>
#include <string.h>
void cmp(cha……
1034 题解简单易懂
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int seperate(int m,int x,int y,int z,int w){ x=m/1000%10; y=m/100%1……