#18521: answer


kentsai1688@gmail.com (Ken Tsai)

學校 : 國立科學工業園區實驗高級中學
編號 : 99014
來源 : [118.163.197.175]
最後登入時間 :
2020-07-19 18:20:13
a024. 最大公因數(GCD) | From: [123.192.90.228] | 發表日期 : 2019-07-20 09:43

#include <cstdlib>
#include <iostream>
#include <cmath>
#include <iomanip>
#include <stdio.h>
using namespace std;


int main()
{
int t,a,b,i;
while(cin>>a>>b)
{
for(i=1;i<=a&&i<=b;i++)
{
if(a%i==0&&b%i==0)
{
t=i;
}
}
cout<<t<<endl;
}

}

 
ZeroJudge Forum