| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 135171 | 林睿 | 最大公约数和最小公倍数 | C++ | Runtime Error | 0 MS | 264 KB | 183 | 2025-11-02 17:20:43 | 
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,man; cin>>a>>b; for(int i=0;i<a;i++){ if(a%i==0&&b%i==0){ man=i; } } cout<<man; return 0; }
Runtime Error:Floating point exception