摘要:
求最大公约数 1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 using namespace std; 5 //枚举法 6 void find1(int a,int b) 7 { 8 int i = min(a, b); 阅读全文
posted @ 2020-09-03 16:59
Annetree
阅读(272)
评论(0)
推荐(0)