#6818: 遞迴版本


happyjohn369 (: ))

學校 : 高雄市立楠梓國中
編號 : 26392
來源 : [182.235.147.81]
最後登入時間 :
2012-07-25 13:57:20
a024. 最大公因數(GCD) | From: [182.235.147.81] | 發表日期 : 2012-07-21 11:28

#include<iostream>
using namespace std;


long _gcd(long a,long b){
 return b?_gcd(b,a%b):a;
}
int main(){
 long x=0,y=0,gcd=0;
 while(cin >> x >> y){
  gcd=_gcd(x,y);
  cout << gcd << "\n";
 }
 return 0;
}

2012-07-21 11:26:40 
ZeroJudge Forum