Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90284 殷佳雨萱 08打车费用 C++ Accepted 1 MS 272 KB 271 2024-09-10 23:44:18

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ double a,q; cin>>a; if(a<=2){ q=6; } if(a>2 && a<=10){ q=6+(a-2)*1.8; } if(a>10){ q=6+8*1.8+(1.8*0.5+1.8)*(a-10); } cout<<q; return 0; }