ans

liujunhao 2023-12-19 18:59:59 3 返回题目

#include<bits/stdc++.h>

using namespace std;

int main(){

double n;
cin>>n;
int a=n/3+50,b=n/1.2;
if(a<b)cout<<"Bike";
else if(b<a)cout<<"Walk";
else cout<<"All";
return 0;

}

{{ vote && vote.total.up }}