题解 2784: 收集瓶盖赢大奖

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2784: 收集瓶盖赢大奖

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; if(a/10>=1……

C++2784开瓶盖赢大奖题解

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){    int a;cin >>a;    if (a>=10||a>=20)    {  ……

2784普普通通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d%d",&n,&m); if (n >=10 || m>=20) prin……