关于欧几里得算法求最大公约数,即OJ1029的参考解法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于欧几里得算法求最大公约数,即OJ1029的参考解法相关的知识,希望对你有一定的参考价值。
1 #include <stdio.h> 2 int main(int argc, char *argv[]) 3 { 4 int a,b,c; 5 scanf("%d %d",&a,&b); 6 while(b>0) 7 { 8 c=a%b; 9 a=b; 10 b=c; 11 } 12 printf("%d\n",a); 13 return 0; 14 }
以上是关于关于欧几里得算法求最大公约数,即OJ1029的参考解法的主要内容,如果未能解决你的问题,请参考以下文章