编写题解 2000: 偶数列举 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=2;i<…… 题解列表 2024年12月01日 2 点赞 0 评论 468 浏览 评分:9.9
3010: 奇偶数之和题解 摘要:参考代码:#include<iostream>using namespace std;int main(){ int n,s=0,t=0; cin>>n; for(int i=1;i<=n…… 题解列表 2024年12月01日 1 点赞 0 评论 194 浏览 评分:9.9
编写题解 1004: [递归]母牛的故事 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main () { int cow[56] = {0,1,2,3,4}; …… 题解列表 2024年12月01日 4 点赞 0 评论 720 浏览 评分:9.9
2000: 偶数列举题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=2;i<…… 题解列表 2024年12月01日 1 点赞 0 评论 384 浏览 评分:9.9
1004: [递归]母牛的故事题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main () { int cow[56] = {0,1,2,3,4}; …… 题解列表 2024年12月01日 2 点赞 0 评论 494 浏览 评分:10.0
编写题解 3010: 奇偶数之和 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,s=0,t=0; cin>>n; for(in…… 题解列表 2024年12月01日 3 点赞 1 评论 195 浏览 评分:9.9
1008: [编程入门]成绩评定题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){ int x; cin >> x; char sco…… 题解列表 2024年12月01日 6 点赞 0 评论 1081 浏览 评分:9.9
编写题解 2780: 奇偶数判断 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if(a%…… 题解列表 2024年12月01日 0 点赞 0 评论 647 浏览 评分:9.9
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){ int x; cin >> x; char sco…… 题解列表 2024年12月01日 6 点赞 0 评论 901 浏览 评分:9.9
1000: [竞赛入门]简单的a+b题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2024年12月01日 9 点赞 0 评论 1735 浏览 评分:10.0