| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 133496 | 张咏灏 | 08打车费用 | C++ | Wrong Answer | 1 MS | 264 KB | 176 | 2025-10-19 08:19:11 |
#include<iostream> using namespace std; int main(){ int a; cin>>a; if(a>=2){ cout<<"6"; }else{ cout<<a-2*1.8+6; } return 0; }
------Input------
4
------Answer-----
9.6
------Your output-----
6