此题运用了stl中的vector容器 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ vector<int>v1; int num; cin>>n…… 题解列表 2024年01月20日 0 点赞 0 评论 189 浏览 评分:9.9
求一个整数的位数及每一位数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x, sum = 10, a = 1; cin >> x; w…… 题解列表 2021年05月16日 0 点赞 0 评论 538 浏览 评分:9.9
题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:获取数字位数(int ws(int) 实现)获取每一位的数字(int *part(int) 实现)按要求输出(主函数实现)注意事项:A.floor()向下舍入,至于作用,自行实验!B.注意题…… 题解列表 2023年06月22日 0 点赞 0 评论 457 浏览 评分:9.9
题解—涉及 利用string进行对数字的处理 摘要:### # 首先卖个广告,欢迎关注我的github账号 ##### peach99cpp,里面有个库存储了我的做题笔记和源代码,欢迎加入! #### 题解——关于string解决数字处理问题的…… 题解列表 2021年04月01日 0 点赞 3 评论 373 浏览 评分:9.9
[编程入门]数字的处理与判断 (c++) 摘要:参考代码:#include<iostream>using namespace std;int main(){ int arr[5]; int n; //输入的数 int number = 0;//记录…… 题解列表 2021年03月24日 0 点赞 0 评论 608 浏览 评分:9.9
题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { double a; int e; double …… 题解列表 2021年03月17日 0 点赞 0 评论 705 浏览 评分:9.9
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:利用strlen函数求出数组有效大小,即数字位数。再利用swich选择语句根据不同位数来进行输出注意事项:注意加上头文件#include<string.h>#include<iostream…… 题解列表 2023年09月09日 0 点赞 0 评论 291 浏览 评分:9.9
字符串解法 摘要:解题思路:如果要求每一位的数字,常规思路应该是整除,这个只是有点复杂并不难,本来想用一个数组的,后来觉得数组也有点麻烦,就直接用了字符串(其实是相似的道理)注意事项:字符串要使用string进行定义参…… 题解列表 2023年09月30日 0 点赞 0 评论 286 浏览 评分:9.9
字符串迅速解决 思路简单清晰 摘要:```cpp #include #include #include using namespace std; int main() { string a; cin>>a;/…… 题解列表 2021年05月18日 0 点赞 0 评论 600 浏览 评分:9.9
正确的递归应该是啥样的?。。。 摘要:参考代码:#include<iostream> using namespace std; void print1(int a); void print2(int a); int main(…… 题解列表 2024年01月01日 0 点赞 0 评论 378 浏览 评分:9.9