题目 1072: 汽水瓶,C++实现,超级简单 摘要:##题目 1072: 汽水瓶,C++实现,超级简单 ######原题链接[题目 1072: 汽水瓶](https://www.dotcpp.com/oj/problem1072.html "题目 1…… 题解列表 2024年07月10日 0 点赞 0 评论 222 浏览 评分:0.0
1157: 亲和数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll qinhe(ll x){ l…… 题解列表 2024年07月10日 0 点赞 0 评论 176 浏览 评分:0.0
题解 1157: 亲和数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll a[100000],b[10000…… 题解列表 2024年07月10日 0 点赞 0 评论 119 浏览 评分:0.0
1999: 回文判断 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll fanzhuan(ll x){ …… 题解列表 2024年07月10日 0 点赞 0 评论 129 浏览 评分:0.0
2968: 区间内的真素数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll fanzhuan(ll x){ …… 题解列表 2024年07月10日 0 点赞 0 评论 132 浏览 评分:0.0
题解 2968: 区间内的真素数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int Real(int a){ if(a<2) return 0; …… 题解列表 2024年07月10日 0 点赞 0 评论 120 浏览 评分:0.0
1169 绝对值排序(sort排序) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cmath>using namespace std;bool compare(…… 题解列表 2024年07月10日 0 点赞 0 评论 130 浏览 评分:0.0
1168简单计算(数学归纳法寻找规律) 摘要:解题思路:建议去看第一名的解题思路,因为他有推导过程,讲的很清楚!!!膜拜大佬!!注意事项:参考代码:#include<iostream>using namespace std;int main(){…… 题解列表 2024年07月10日 0 点赞 0 评论 227 浏览 评分:0.0
1166求[X,Y]内被除3余1并且被除5余3的整数的和(for循环遍历) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int X, Y; cin >> X >> Y; long long …… 题解列表 2024年07月10日 0 点赞 0 评论 374 浏览 评分:0.0
1165明明的随机数(sort排序) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int N; cin >> N;…… 题解列表 2024年07月10日 0 点赞 0 评论 141 浏览 评分:0.0