Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
121666 王奕诺 08打车费用 C++ Compile Error 0 MS 0 KB 240 2025-06-07 19:24:27

Tests(0/0):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int m; double s; cin>>m; s=0; if(m>10){ s=6+(10-2)*1.8+(m-10)*1.8*1.5; }else{ s=6+(10-2)*1.8; } cout<<s;


Run Info:

Main.cc: In function 'int main()':
Main.cc:14:12: error: expected '}' at end of input
     cout<