2816 统计满足条件的4位数个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ ll n,su…… 题解列表 2024年07月17日 0 点赞 0 评论 160 浏览 评分:0.0
2777 计算2的幂 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ ll n,…… 题解列表 2024年07月17日 0 点赞 0 评论 216 浏览 评分:0.0
回文数判断C++ 摘要:解题思路:定义函数 判断是否是回文数 再从主函数调用注意事项:赋值与等于的区别!本文赋值为加粗字体,等于为红色字体参考代码:#include <bits/stdc++.h>using namespac…… 题解列表 2024年07月17日 1 点赞 0 评论 422 浏览 评分:9.9
2955: 判决素数个数 摘要:解题思路:循环判断x到y有多少个质数注意事项:后面定义sum来累加计算 rutern不能写成cout MYdamn里是i …… 题解列表 2024年07月17日 0 点赞 0 评论 180 浏览 评分:0.0
题解 2973: 出现次数超过一半的数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,tong[1003];int main(){ cin>>n; for(…… 题解列表 2024年07月16日 0 点赞 0 评论 158 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;struct tim{ ll n;…… 题解列表 2024年07月16日 0 点赞 0 评论 203 浏览 评分:9.9
2909: 直方图 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;typedef long long ll;ll tong[10000];int n;ll a…… 题解列表 2024年07月16日 1 点赞 0 评论 167 浏览 评分:0.0
题解 2909: 直方图 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;typedef long long ll;ll tong[10000];int n;ll a…… 题解列表 2024年07月16日 0 点赞 0 评论 175 浏览 评分:0.0
题解 2909: 直方图 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[10002],n,a[10002];int main(){ ci…… 题解列表 2024年07月16日 0 点赞 0 评论 169 浏览 评分:0.0
题解 2974: 统计字符数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1001;ll to…… 题解列表 2024年07月16日 0 点赞 0 评论 157 浏览 评分:0.0