A 这题的本意是让更多人学习到浮点数会存在大数吃小数的情况,考察选手是否有良好的代码习惯。 某位选手的悲惨经历 。 #include<bits/stdc++.h> using namespace std; using i64 = long long; int main() { ios::sync_with_stdio(0), cin.tie(0); i64 x, y; cin >> x >> y; if (x == 1)cout << 10 + y; else if (x == 2)cout << i64(1e9) + y; else...