Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126288 | 袁梓豪 | 06变换四位数 | C++ | Accepted | 1 MS | 276 KB | 226 | 2025-07-17 16:09:12 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d,e,f,j; cin>>a; b=a%10;//4 c=a/10;//123 d=c%10;//3 e=c/10;//12 f=e/10;//1 j=e%10;//2 cout<<j*1000+f*100+b*10+d; return 0; }