更简单的题解
2023-12-03 10:28:35
发布于:浙江
6阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int weight,money;
char m;
cin>>weight>>m;
if(weight<=1000){
money=8;
}
if(weight>1000){
money+=((weight-1000)/500+1)*4;
}
if(m=='y'){
money+=5;
}
cout<<money;
return 0;
}
这里空空如也
有帮助,赞一个