Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
100330 | 唐诗阳 | 08打车费用 | C++ | Wrong Answer | 0 MS | 272 KB | 418 | 2024-12-07 14:33:25 |
#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int km,y,n; cin>>km; if(km<=2){ cout<<6; } else if(km>2 && km<=10){ cout<<km*1.8; } else if(km>10){ km=km-10; y=km*+1.8*10; cout<<y; } return 0; }
------Input------
4
------Answer-----
9.6
------Your output-----
7.2