随便玩玩(可能有漏洞,请谅解!)
2024-04-28 22:16:24
发布于:北京
1阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int n,s=8,b=0;
char a;
cin >> n;
int k=n;
cin >> a;
if(a=='y'){
s+=5;
}
if(n<=1000){
s+=8;
cout << s;
}else{
k-=1000;
b=k/500;
if(k%500>1){
b++;
}
s+=b*4;
}
cout << s;
return 0;
}
这里空空如也
有帮助,赞一个