2544: N以内累加求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; int s…… 题解列表 2024年01月08日 1 点赞 0 评论 198 浏览 评分:10.0
题解 1764循环入门练习1 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int sum = 0; for(int i=…… 题解列表 2024年01月08日 0 点赞 0 评论 162 浏览 评分:9.9
2000: 偶数列举 摘要:解题思路:注意事项:循环变量是n参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; …… 题解列表 2024年01月08日 0 点赞 0 评论 213 浏览 评分:9.9
2000: 偶数列举 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=2;i<…… 题解列表 2024年01月08日 0 点赞 0 评论 226 浏览 评分:9.9
题解 2000 偶数列举 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; for(i…… 题解列表 2024年01月08日 0 点赞 0 评论 197 浏览 评分:8.0
题解 2000: 偶数列举 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a; cin>>a; for(int i=…… 题解列表 2024年01月08日 0 点赞 0 评论 245 浏览 评分:6.0
1764: 循环入门练习1 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int sum=0; //累加器 for(i…… 题解列表 2024年01月08日 0 点赞 0 评论 212 浏览 评分:9.9
排队打水问题贪心求解 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int N = 510; in…… 题解列表 2024年01月08日 0 点赞 0 评论 192 浏览 评分:0.0
3010: 奇偶数之和(超简单) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; long long…… 题解列表 2024年01月08日 0 点赞 0 评论 105 浏览 评分:0.0
题解 3010: 奇偶数之和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int i,n,s1,s2; s1=0; …… 题解列表 2024年01月08日 0 点赞 0 评论 132 浏览 评分:9.9