Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97860 吴梓玄 04四位数移位 C Wrong Answer 1 MS 200 KB 142 2024-11-16 17:05:34

Tests(5/8):


Code:

#include <stdio.h> int main() { int a, b, c, s; scanf("%d",&a); b=a/10; c=a%10; s=1000*c+b; printf("%d\n",s); return 0; }


Run Info:

------Input------
7980
------Answer-----
0798
------Your output-----
798