Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5867 李伟和 数字换位 C++ Accepted 0 MS 260 KB 150 2024-12-20 15:49:49

Tests(1/1):


Code:

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