我哪里错了?

wc002 2024-12-28 9:35:02 3

#include <bits/stdc++.h> using namespace std; int main() { int n, a, b, c; cin >> n; a = n / 100; b = n % 100 / 10; c = n % 100 % 10 / 1; if (c > 0) cout << c << b << a; if (c == 0) cout << b << a; }

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

共 2 条回复

wc002

谢谢

root 站长

如果输入是 100,那输出应该是1, 而不是01