Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
88739 | 黎贤超 | 15求两个数的最大公约数 | C++ | Accepted | 1 MS | 272 KB | 194 | 2024-08-21 09:09:11 |
#include<iostream> using namespace std; int main(){ int bcs,cs,ys; cin>>bcs>>cs; ys=bcs%cs; while(ys!=0){ bcs=cs; cs=ys; ys=bcs%cs; } cout<<cs; return 0; }