题解 100% AC
2025-08-02 13:10:54
发布于:江苏
6阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
double a,b;
cin>>n;
a=n/1.2;
b=n/3.0+23+27;
if(a>b){
cout<<"Bike";
}else if(a<b){
cout<<"Walk";
}else{
cout<<"All";
}
return 0;
}
这里空空如也
有帮助,赞一个