1034-自定义函数之数字分离 语言:C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;void sep(int n){ string s=to_s…… 题解列表 2022年10月05日 0 点赞 0 评论 108 浏览 评分:0.0
用string字符串的性质来解决[编程入门]自定义函数之数字分离(C++语言) 摘要:解题思路:把输入看成一个字符串,然后再根据string字符串的性质即可;注意事项:审题很重要;参考代码:#include<bits/stdc++.h>using namespace std;int m…… 题解列表 2022年06月22日 0 点赞 0 评论 130 浏览 评分:9.9
自定义函数之数字分离 摘要:解题思路:定义一个函数分解并输出即可。注意事项:注意分解方法。参考代码:#include<bits/stdc++.h> using namespace std; void print(int n)…… 题解列表 2022年06月11日 0 点赞 0 评论 230 浏览 评分:9.9
[编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s,b;int main(){ cin>>s; for(int …… 题解列表 2022年05月06日 0 点赞 0 评论 114 浏览 评分:0.0
[编程入门]自定义函数之数字分离 题解 摘要:解题思路:这题可以把四位数看做一个字符串,带人自定义函数,边输出字符边输出空格。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;strin…… 题解列表 2022年05月04日 0 点赞 0 评论 146 浏览 评分:4.7
1034: [编程入门]自定义函数之数字分离 摘要:解题思路:先模10取余再自除10可以逆序得到一个数每位上的数,存进一个数组,逆序输出就行了。注意事项:没啥好说的,和前几题相比又不设计字符串又不涉及指针,简直是一股清流。参考代码:#include <…… 题解列表 2022年03月02日 0 点赞 0 评论 324 浏览 评分:6.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;void out(string a){ for(int i=0;i<4;i++){ …… 题解列表 2022年03月01日 0 点赞 0 评论 93 浏览 评分:0.0
C++代码 for循环 求余 整除 数组保存每位数值 逆序输出 摘要:解题思路:for循环 求余 整除 数组保存每位数值 逆序输出注意事项:暂时不明参考代码:#include<iostream>using namespace std;int main(){ int…… 题解列表 2021年12月28日 0 点赞 0 评论 318 浏览 评分:0.0
用最基础的知识解决这道题 摘要:解题思路:用最基础的方法来求每一位的数字是什么,依次输出就可以了参考代码:#include<iostream>using namespace std;int main(){ int n,a,b,c,d…… 题解列表 2021年11月10日 0 点赞 0 评论 624 浏览 评分:9.9
编写题解 1034: [编程入门]自定义函数之数字分离 AC代码 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ char letter; while (cin >> le…… 题解列表 2021年08月18日 0 点赞 0 评论 331 浏览 评分:9.9