收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; if(a>=…… 题解列表 2022年11月01日 0 点赞 1 评论 770 浏览 评分:9.9
2784: 收集瓶盖赢大奖 摘要:```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; if(a>=10||b…… 题解列表 2023年01月13日 0 点赞 0 评论 530 浏览 评分:9.9
收集瓶盖赢大奖 摘要:解题思路:就是简单的判断注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); if(a>=10||…… 题解列表 2022年11月11日 0 点赞 0 评论 1045 浏览 评分:9.9
收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年05月20日 0 点赞 0 评论 485 浏览 评分:8.0
编写题解 2784: 收集瓶盖赢大奖 (作者亲测~) 摘要:解题思路:没别的,记代码就行注意事项:顺序别错比如:#include <iostream>using namespace std;int main(){ int a,b; cin>>a>…… 题解列表 2023年05月20日 0 点赞 0 评论 589 浏览 评分:6.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 评论 482 浏览 评分:4.7
2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int x,y; cin >> x >>y ;…… 题解列表 2023年12月23日 0 点赞 0 评论 464 浏览 评分:2.0
2784: 收集瓶盖赢大奖 解题思路:注意事项:n,m分别是幸运和鼓励的数量,题目说拥有10个幸运说明是要等于10,加之样例给出的11可以推出幸运数可以大于/小于10,因此是大于等于10(即n>=10)鼓励数同理参考代码:#includeusingnamespacestd;intmain(){intn, 题解列表 2026年09月09日 0 点赞 0 评论 38 浏览 评分:0.0
C++简单解法 摘要:解题思路:属于基础题目注意事项:参考代码:#include<iostream>using namespace std;int main(void){ i…… 题解列表 2025年03月05日 0 点赞 0 评论 541 浏览 评分: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 评论 543 浏览 评分:0.0