Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91338 林嘉乐 08打车费用 C++ Accepted 1 MS 272 KB 228 2024-09-21 15:59:48

Tests(10/10):


Code:

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