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

Tests(5/8):


Code:

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


Run Info:

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