......
2024-05-24 22:18:10
发布于:湖北
3阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main() {
int x;
cin >> x;
if(x>=100 && x<=200){
cout << 20;
}
else if(x>=200 && x<=300){
cout << 50;
}
else {
cout << 100;
}
return 0;
}
这里空空如也
有帮助,赞一个