Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
43630 楼俊毅 数字换位 C++ Accepted 2 MS 280 KB 148 2022-12-23 10:23:34

Tests(1/1):


Code:

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