#15340: 為什麼會這樣?


c0745077 (Haha)

學校 : 不指定學校
編號 : 81434
來源 : [218.173.41.87]
最後登入時間 :
2022-07-16 22:21:52
a024. 最大公因數(GCD) | From: [36.236.26.54] | 發表日期 : 2018-09-29 16:01

測試時為AC

但送出時

卻WA:

您的答案:2

正確答案:1

因為不知道測資,不知道要怎麼修改? 請指教!

#include <iostream>
using namespace std;

int main()
{
int a,b,t;
int ans=1;
while (cin>>a>>b){
if(a<b)
{
t=a;
a=b;
b=t;
}
ans=a%b;

if(ans!=0){
t=b;
b=(a%b);
a=t;
cout<<ans<<endl;
}

else{
cout<<b<<endl;
}

}


}

 
ZeroJudge Forum