Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126738 | 唐洪盛 | 08打车费用 | C++ | Wrong Answer | 1 MS | 276 KB | 239 | 2025-07-21 15:18:54 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; double b; if(a<=2){ b=6; }else if(a<=10){ b=(a-2)*1.8+6; }else{ } b=(a-10)*2.7+6+1.8*8; cout<<b; return 0; }
------Input------
4
------Answer-----
9.6
------Your output-----
4.2