码迷,mamicode.com
首页 > 其他好文 > 详细

辗转相除法求最大公约数

时间:2016-12-24 16:57:00      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:include   递归   实现   oid   class   ret   公约数   return   while   

 1 #include<stdio.h>
 2 void sort(int *pa,int *pb){//a,b按照从大到小的次序排列(利用了指针,实现“双向”传递)
 3     int t;
 4     if(*pa<*pb){
 5         t=*pa;*pa=*pb;*pb=t;
 6     }
 7 }
 8 int gcd_1(int a,int b){//用辗转相除法求最大公约数
 9     int c;
10     if(b!=0){
11         while(a%b!=0){
12             c=b;
13             b=a%b;
14             a=c;
15         }
16     }
17     return b;
18 }
19 int gcd_2(int a,int b){//辗转相除法的递归写法
20     int c;
21     if(b==0)c=a;
22     else
23         c=gcd_2(b,a%b);
24     return c;
25 }
26 int main(){
27     int x,y,z,z2,*pa,*pb;
28     scanf("%d%d",&x,&y);
29     pa=&x,pb=&y;         //若此处改为*pa=x,*pb=y;则pa、pb为野指针
30     sort(pa,pb);
31     z=gcd_1(x,y);
32     z2=gcd_2(x,y);
33     printf("%d\n%d\n",z,z2);
34     return 0;
35 }

 

辗转相除法求最大公约数

标签:include   递归   实现   oid   class   ret   公约数   return   while   

原文地址:http://www.cnblogs.com/luzhiliang/p/6217322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!