小题解 (辗转相除法
2023-08-02 16:13:30
发布于:广东
11阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,m,a;
cin>>n>>m;
a=n;
while(a!=0){
a=n%m;
n=m;
m=a;
}
cout<<n<<endl;
return 0;
}
这里空空如也
有帮助,赞一个