11 条题解

  • 1
    @ 2024-11-18 21:30:42

    #include <stdio.h> int main() { int a,b,c; int t; scanf("%d %d %d",&a,&b,&c); t=a; a=b; b=c; c=t; printf("%d %d %d",a,b,c); return 0; }

    信息

    ID
    12
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    7375
    已通过
    2711
    上传者