Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
36530 | lihaocheng | 三位整数反转 | C++ | No Test Data | 0 MS | 0 KB | 164 | 2024-01-14 10:39:47 |
#include <iostream> using namespace std; int main(){ int a; cin >> a; cout << a % 10 << a / 10 % 10 << a / 100 << endl; return 0; }