Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
122425 邹金行 15求两个数的最大公约数 C++ Accepted 1 MS 276 KB 266 2025-06-19 18:57:17

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a,b; int i=1; int ld=1; cin>>a>>b; while(i<=a){ if(b%a==0){ cout<<a; return 0; } if(a%i==0&&b%i==0){ if(i>ld){ ld=i; } } i++; } cout<<ld; return 0; }