Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8238 季洁 求最大公约数(提高版) C++ 运行出错 0 0 MS 240 KB 182 2020-10-31 18:50:49

Tests(0/6):


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


测评信息: