编写题解 1004: [递归]母牛的故事 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main () { int cow[56] = {0,1,2,3,4}; …… 题解列表 2024年12月01日 4 点赞 0 评论 711 浏览 评分:9.9
2000: 偶数列举题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=2;i<…… 题解列表 2024年12月01日 1 点赞 0 评论 382 浏览 评分:9.9
1004: [递归]母牛的故事题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main () { int cow[56] = {0,1,2,3,4}; …… 题解列表 2024年12月01日 2 点赞 0 评论 489 浏览 评分: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 评论 189 浏览 评分:9.9
1008: [编程入门]成绩评定题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){ int x; cin >> x; char sco…… 题解列表 2024年12月01日 6 点赞 0 评论 1044 浏览 评分:9.9
编写题解 2780: 奇偶数判断 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if(a%…… 题解列表 2024年12月01日 0 点赞 0 评论 643 浏览 评分:9.9
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){ int x; cin >> x; char sco…… 题解列表 2024年12月01日 6 点赞 0 评论 883 浏览 评分:9.9
1000: [竞赛入门]简单的a+b题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2024年12月01日 9 点赞 0 评论 1717 浏览 评分:10.0
编写题解 1000: [竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2024年12月01日 4 点赞 0 评论 903 浏览 评分:9.9
1267: A+B Problem题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b…… 题解列表 2024年12月01日 3 点赞 0 评论 545 浏览 评分:9.9