ans

DOZIE 2022-07-10 14:13:57 14 返回题目

#include <bits/stdc++.h> using namespace std; int main(){ int a; cin >> a; int b = a / 3.0 + 27 + 23; int c = a / 1.2 ; if (c > b){ cout << "Bike"; } else if (b > c){ cout << "Walk"; } else if (b == c){ cout << "All"; } return 0; }

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