提交时间:2023-12-30 16:21:09

运行 ID: 33566

#include<bits/stdc++.h> using namespace std; int main(){ int n; float che=0,zou=0; cin>>n; che=n/3.0+50; zou=n/1.2; if(che>zou){ cout<<"Walk"; } else if(zou>che){ cout<<"Bike"; } else{ cout<<"All"; } }