摘要:
1 #include 2 #include 3 #include 4 using namespace std; 5 int gcd(int a,int b){// a-15 b-6 6 int c=1,t; 7 if(a<b) {t=a,a=b,b=t;} 8 while(c!=0){ 9 c=a%b;10 a=b;11 b=c;12 }13 return a;14 }15 int main(){16 int t,i,j,n;17 int temp,res;18 ... 阅读全文
posted @ 2013-09-20 20:31
symons
阅读(144)
评论(0)
推荐(0)
浙公网安备 33010602011771号