Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
39433 张予馨 骑车与走路 C++ 通过 0 MS 240 KB 222 2024-02-01 17:04:25

Tests(1/1):


#include<iostream> using namespace std; int main() { int n; cin>>n; float x=n/3.0+50; float y=n/1.2; if(x>y){ cout<<"Walk"; } if(x<y){ cout<<"Bike"; } if(x==y){ cout<<"All"; } return 0; }


测评信息: