5 条题解
-
2
#include <bits/stdc++.h> using namespace std; int main() { double x, y, z; cin >> x >> y >> z; if (x + y + z / 3.0 >= 90.0) { cout << "nanjing"; } else { cout << "beijing"; } return 0; }
以上是搞笑代码(也能AC),下面是正确代码:
#include <bits/stdc++.h> using namespace std; int main() { double x, y, z; cin >> x >> y >> z; if ((x + y + z) / 3.0 >= 90.0) { cout << "beijing"; } else { cout << "nanjing"; } return 0; }
- 1
信息
- ID
- 623
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 5
- 标签
- 递交数
- 375
- 已通过
- 133
- 上传者