#2614: 請幫忙看一下


ztex100028092 (巴拉呆)

學校 : 國立花蓮高級中學
編號 : 8263
來源 : [125.225.32.223]
最後登入時間 :
2009-12-13 17:26:34
a024. 最大公因數(GCD) | From: [125.225.36.58] | 發表日期 : 2009-11-07 16:18

我打ㄉ結果說是TEL能幫忙一下ㄇ?? 謝謝 

 

#include<stdio.h>
#include<stdlib.h>


int main()
{
        int a,b,temp=0;   
        scanf("%d;%d",&a,&b);
        while(a%b!=0);
        {temp=a;
        a=b;
        b=temp%b;
                      }
        printf("%d",b);
       system("pause");
return 0;

}

 
#2615: Re:請幫忙看一下


leopan0922 (zz)

學校 : 臺北市立成功高級中學
編號 : 6612
來源 : [140.113.225.106]
最後登入時間 :
2016-08-15 15:44:07
a024. 最大公因數(GCD) | From: [58.115.139.238] | 發表日期 : 2009-11-07 17:55

我打ㄉ結果說是TEL能幫忙一下ㄇ?? 謝謝 

 

#include
#include


int main()
{
        int a,b,temp=0;   
        scanf("%d;%d",&a,&b);
        while(a%b!=0);
        {temp=a;
        a=b;
        b=temp%b;
                      }
        printf("%d",b);
       system("pause");
return 0;

}

改好了看看了解一下吧

#include<stdio.h>
#include<stdlib.h>
int main()
{
    int a,b,temp=0;   
    while(scanf("%d%d",&a,&b)==2)
    {
        while(a%b!=0)
        {
            temp=a;
            a=b;
            b=temp%b;
        }
        printf("%d\n",b);
    }    
}   

 


 
ZeroJudge Forum