摘要: 1 #include<iostream> 2 using namespace std; 3 int gcd(int a,int b) 4 { 5 if(b==0) return a; 6 else return gcd(b,a%b); 7 } 8 int main() 9 { 10 int a,b, 阅读全文
posted @ 2021-01-02 22:38 丁帅帅dss 阅读(72) 评论(0) 推荐(0)