1034: [编程入门]自定义函数之数字分离(自定义函数、循环、C++) 摘要:解题思路:直接循环是逆序输出,那就除1000,再乘回来就好了注意事项:注意浮点数无法取余,强制转换参考代码:#include <iostream> using namespace std; voi…… 题解列表 2022年10月10日 0 点赞 0 评论 156 浏览 评分:9.9
易如反掌之自定义函数之数字分离 摘要:解题思路:遍历循环字符串长度,依次输出。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; sc…… 题解列表 2024年04月04日 0 点赞 0 评论 120 浏览 评分:9.9
1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;queue<char>mem;int main(){ int i; char a; …… 题解列表 2022年12月06日 0 点赞 0 评论 95 浏览 评分:9.9
[编程入门]自定义函数之数字分离-题解(C++代码) 摘要: ```cpp #include using namespace std; int main() { string a; cin>>a; for(int i=0;i…… 题解列表 2020年02月09日 0 点赞 1 评论 971 浏览 评分:9.9
自定义函数之数字分离 摘要:解题思路:定义一个函数分解并输出即可。注意事项:注意分解方法。参考代码:#include<bits/stdc++.h> using namespace std; void print(int n)…… 题解列表 2022年06月11日 0 点赞 0 评论 225 浏览 评分:9.9
[编程入门]自定义函数之数字分离-Java-超笨方法-4个syso : ) 摘要:解题思路:注意事项:参考代码:Scanner in = new Scanner(System.in); int a = in.nextInt(); System.out.print(a/1000+…… 题解列表 2021年05月19日 0 点赞 0 评论 406 浏览 评分:9.9
平平淡淡才是真 摘要:# 简单完成任务 ```c #include main() { void separation(char []); char a[4]; scanf("%s",a); …… 题解列表 2019年10月28日 0 点赞 4 评论 885 浏览 评分:9.9
自定义函数实现数字分离(已通过运行 摘要:解题思路: 根据题目要求需自定义一个函数,所以我们可以通过定义一个数组函数来实现数字分离注意事项: 在实际解题中,出现了多次运行错误,经过排查才发现自己是通过gets获取字符串,这就导致自…… 题解列表 2023年09月17日 0 点赞 0 评论 133 浏览 评分:9.9
自定义函数之数字分离(这样也行) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char arr[5]; gets(arr); int n = strlen…… 题解列表 2023年02月09日 0 点赞 0 评论 64 浏览 评分:9.9
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(int argc, char *argv[]) { void numbe…… 题解列表 2020年12月19日 0 点赞 1 评论 749 浏览 评分:9.9