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