摘要: //求最大公约数 #include <iostream> using namespace std; int big(int a,int b){ if(a%b==0){ return b; }else{ return big(b,a%b); } } int main(int argc, char** 阅读全文
posted @ 2023-07-31 20:17 fushuxuan1 阅读(20) 评论(0) 推荐(0)