0
已解决
何冯成
中级光能
中级光能
为什么我的微课看不了
急急急
作业的微课
就差2700计价器了
#include<iostream>
#include<cstdio> //文件操作的头文件
#include<cmath>
#include<algorithm>
using namespace std;
int cnt=1;
int main(){
//freopen("game.in","r",stdin);
//freopen("game.out","w",stdout);
int x;
double c;
cin>>x>>c;
if(x==1){
if(c<=2.5){
cnt=8;
}
else if(c>=2.5&&c<15){
cnt=8+(c-2.5)*1.40;
}
else cnt=8+12.5*1.4+(c-15)*2.1;
}
else if(x==2){
if(c<=2.5){
cnt=9;
}
else if(c>2.5&&c<=15){
cnt=9+(c-2.5)*1.4;
}
else cnt=9+12.5*1.4+(c-15)*2.1;
}
cout<<(int)(cnt+0.5);
//fclose(stdin);
//fclose(stdout);
return 0;
}