Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97226 Kevin 数字换位 C++ Accepted 1 MS 272 KB 172 2024-11-11 18:30:50

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; int bai=x/100; int shi=x/10%10; int ge=x%10; cout<<ge*100+shi*10+bai; return 0; }