摘要: #include <iostream> using namespace std; int dg(int a,int b){ if(a%b==0){ return b; }else{ return dg(b,a%b); } } int main(){ //这是递归 int a,b; cin>>a>>b 阅读全文
posted @ 2025-07-29 15:44 郭立恒 阅读(4) 评论(0) 推荐(0)