Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
57026 | shtest | 最大公约数、最小公倍数 | C++ | 解答错误 | 0 MS | 244 KB | 208 | 2024-11-19 10:47:47 |
#include<bits/stdc++.h> using namespace std; int main() { int m,n,r,j; cin>>m>>n; r=m%n; j=m*n; while(r!=0) { m=n; n=r; r=m%n; } cout<<n<<endl; cout<<j/n<<endl; return 0; }