题解 | 反向输出一个四位数
反向输出一个四位数
https://www.nowcoder.com/practice/1f7c1d67446e4361bf4af67c08e0b8b0
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
cout << n % 10 << (n / 10) % 10 << (n / 100) % 10 << (n / 1000) % 10 << endl;
}
// 64 位输出请用 printf("%lld")

