题解
2024-03-03 11:36:25
发布于:广东
16阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,s=0;
cin >> a>>b;
while(a>0&&b>0){
s++;
if(a>b)
a=a-b;
else
b=b-a;
}
cout<<s;
return 0;
}
这里空空如也
有帮助,赞一个