3 条题解

  • 0
    @ 2023-8-22 20:26:17

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

    }
    printf("%d",a);
    return 0;
    

    }

    信息

    ID
    218
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    (无)
    递交数
    621
    已通过
    173
    上传者