1 条题解

  • 0
    @ 2024-9-8 8:31:23

    #include<bits/stdc++.h> using namespace std; int main() { int a=15,b=18,s=1; while(s!=0){ s=a%b; a=b; b=s; } cout<<a; return 0; }

    • 1

    信息

    ID
    925
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    递交数
    55
    已通过
    34
    上传者