close

問題描述:

給定二個正整數,利用輾轉相除法求其最大公因數。

輸入說明:

給定二個正整數

輸出說明:

輸出最大公因數

範例:

假設輸入為 300 與 250, 則輸出為 50

C++:

//假設輸入為 300 與 250, 則輸出為 50
#include <iostream> 
#include <algorithm>  
using namespace std;
int main(){
	//ios::sync_with_stdio(0);
	//cin.tie(0);
	int a,b;
	while(cin>>a>>b){
		cout<<__gcd(a,b)<<"\n";
	}
	return 0;
} 
 

python:

import math
while True:
    try:
        a,b=map(int,input().split())
        print(math.gcd(a,b))
    except:break
arrow
arrow
    文章標籤
    python C++ ITSA
    全站熱搜
    創作者介紹
    創作者 趴趴熊日常 的頭像
    趴趴熊日常

    資工趴趴熊的小天地

    趴趴熊日常 發表在 痞客邦 留言(0) 人氣()