Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
8304 郑元泰 06变换四位数 C++ Compile Error 0 MS 0 KB 220 2025-08-12 14:49:30

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c,d,e; cin>>a; b=a%10;//个 c=a/10%10;//十 d=a/100%10;//百 e=a/1000%10;//千 cout<<e*100+d*1000+c+b*10; return 0; }


Run Info:

mount: mount /usr on /home/judge/jnoj/judge/run/1/usr failed: No space left on device