Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
56013 | luchenhao2024 | 求最大公约数问题 | C++ | 解答错误 | 0 MS | 236 KB | 203 | 2024-11-08 19:16:17 |
#include <iostream> using namespace std; int main(){ int m,n,r; cin>>m>>n; r=m%n; while(r!=0){ m=n; n=r; r=m%n; cout<<n<<endl;} return 0; }