Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8356 沈文佳 求最大公约数(提高版) C++ 解答错误 0 0 MS 248 KB 184 2020-10-31 19:43:25

Tests(0/6):


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


测评信息: