摘要: #include <bits/stdc++.h> using namespace std; int f(int a,int b){ if(a==b){ return 1; } if(a>b){ swap(a,b); } return f(a,b-a)+1; } int main(){ int b,m 阅读全文
posted @ 2023-11-04 09:48 fushuxuan1 阅读(39) 评论(0) 推荐(0)