2023年5月12日
摘要: 4.1最大公约数 #include<bits/stdc++.h>using namespace std;int gcd(int a,int b)//求a和b的最大公约数 { return b?gcd(b,a%b):a; //辗转相除法递归形式 } int main(){ int a,b;cin>>a 阅读全文
posted @ 2023-05-12 11:18 临江柔 阅读(3) 评论(0) 推荐(0) 编辑