编写题解 2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b; cin>>a>>b; if(10…… 题解列表 2023年12月14日 0 点赞 0 评论 65 浏览 评分:0.0
C++简单解法 摘要:解题思路:属于基础题目注意事项:参考代码:#include<iostream>using namespace std;int main(void){ i…… 题解列表 2025年03月05日 0 点赞 0 评论 194 浏览 评分:0.0
2784普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d%d",&n,&m); if (n >=10 || m>=20) prin…… 题解列表 2024年11月23日 0 点赞 0 评论 167 浏览 评分:0.0
2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; if(a/10>=1…… 题解列表 2024年05月05日 0 点赞 0 评论 107 浏览 评分:0.0
题解 2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月23日 0 点赞 0 评论 105 浏览 评分:0.0
2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:||是或者参考代码:#include <iostream>using namespace std;int main(){ int x,y; cin >> x >>y ;…… 题解列表 2023年12月17日 0 点赞 0 评论 113 浏览 评分:0.0
题解 2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b; scanf("%d %d", &a, &b); if (a>=10||b>…… 题解列表 2023年08月17日 0 点赞 0 评论 169 浏览 评分:0.0
收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d%d",&n,&m); if(n>=10 ||…… 题解列表 2023年01月14日 0 点赞 0 评论 160 浏览 评分:0.0
2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int x,y; cin >> x >>y ;…… 题解列表 2023年12月23日 0 点赞 0 评论 127 浏览 评分:2.0
2784收集瓶盖赢大奖题解 (c++) 摘要:#include using namespace std; int main(){ int a; int b; cin>>a>>b; if (a>=10){ cout…… 题解列表 2023年11月02日 0 点赞 0 评论 152 浏览 评分:4.7