Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132164 蔡胤泽 04四位数移位 C++ Accepted 1 MS 272 KB 162 2025-10-07 10:35:50

Tests(8/8):


Code:

#include <iostream> using namespace std; int main(){ int a, b, c, d; cin >> a; b = a / 10; c = a % 10; cout << c << b ; return 0; }