高精度加法,vector 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>using namespace std;const int n = 1e6 + 10;vector<i…… 题解列表 2023年09月20日 0 点赞 0 评论 318 浏览 评分:0.0
蓝桥杯冒泡程序动态数组分配 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <iomanip>using namespace std;int main() { int n; ci…… 题解列表 2023年09月19日 0 点赞 0 评论 373 浏览 评分:0.0
字符串连接 摘要:```cpp #include using namespace std; int main() { string s,t; getline(cin,s); getline(…… 题解列表 2023年09月18日 0 点赞 0 评论 361 浏览 评分:6.0
数组的转置-仿照一维数组输入 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int r=3,c=3…… 题解列表 2023年09月18日 0 点赞 0 评论 270 浏览 评分:6.0
字符大法好 摘要:解题思路:用字符串一个一个取出来注意事项:特别注意就是别想复杂了,一般数学取数字问题多多考虑字符串参考代码:#include <iostream>#include <stdio.h>using nam…… 题解列表 2023年09月17日 0 点赞 0 评论 292 浏览 评分:0.0
2939: 最匹配的矩阵 摘要:解题思路:注意事项:本题较难参考代码:#include <stdio.h> #include <stdlib.h> #include <math.h> using namespace std; …… 题解列表 2023年09月17日 0 点赞 0 评论 404 浏览 评分:9.9
2117: 信息学奥赛一本通T1310-车厢重组 摘要:解题思路:本题运用冒泡排序,并计算排序次数视频解析:https://www.dotcpp.com/oj/assets/addons/assets/addons/ueditor/php/upload/i…… 题解列表 2023年09月17日 0 点赞 0 评论 646 浏览 评分:9.9
2950: 素数回文数的个数 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;//判断是否为素数int ss(int x){ if(x<2) { …… 题解列表 2023年09月16日 0 点赞 0 评论 392 浏览 评分:0.0
2966: 最大质因子序列 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int ss(int x){//判断是否为素数 int sum=0; for(i…… 题解列表 2023年09月16日 0 点赞 0 评论 406 浏览 评分:9.9
2968: 区间内的真素数 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int ss(int x){//判断是否为素数 if(x<2) { …… 题解列表 2023年09月16日 0 点赞 0 评论 355 浏览 评分:0.0