信奥一本通明明过了......
代码在下方
#include<bits/stdc++.h> using namespace std; int main(){ int m; double b,w; cin>>m; b=(m/3)+27+23; w=m/1.2; if(b<w){ cout<<"Bike"; } if(b==w){ cout<<"All"; } if(b>w){ cout<<"Walk"; } return 0; }