Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
32670 闻航 骑车与走路 C++ 通过 0 MS 248 KB 272 2023-12-02 12:13:12

Tests(1/1):


#include <iostream> using namespace std; int main() { double x,b,w; cin>>x; w=x/1.2; b=x/3+(0.27+0.23); if(w<b) { cout<<"Walk"; } else if(w>b) { cout<<"Bike"; } else { cout<<"All"; } return 0; }


测评信息: