题解
2023-07-15 10:59:16
发布于:浙江
2阅读
0回复
0点赞
#include<bits/stdc++.h>//万能头
using namespace std;
int main(){
int x,a=8;
char c;
cin>>x>>c;
if(x>1000){
x-=1000;
a=a+(x/500)*4;
if(x%500!=0){
a+=4;
}
}
if(c=='y'){
a+=5;
}
cout<<a;
return 0;//好习惯
}
这里空空如也
有帮助,赞一个