摘要: int cal(int x,int y) { if (x==0) { return y; } return cal(y % x, x); } 阅读全文
posted @ 2022-12-04 16:01 hurui12 阅读(16) 评论(0) 推荐(0) 编辑