不正经题解 | 充值满赠
2024-08-07 21:37:54
发布于:浙江
10阅读
0回复
0点赞
思路分析
其实我们这道题只要会判断就行了,很简单的哦
答案
#include <iostream>
using namespace std;
int daan(int n){
if(n >= 300)
return 100;
else if(n < 300 && n >= 200)
return 50;
else if(n < 200 && n >= 100)
return 20;
}
int main(){
int n;
cin >> n;
cout << daan(n);
return 0;
}
广告时间
我和“City of Hackers”的小伙伴都在ACGO等你,快用这个专属链接加入我们吧!https://www.acgo.cn/application/1786225240849158144
提问时间!
这里空空如也
有帮助,赞一个