代码
#include <stdio.h>
int main()
{
int a,b,r,temp;
printf("Please enter a ,b:");
scanf("%d,%d",&a,&b);
if(a<b)
{
temp=a;
a=b;
b=temp;
}
r=a%b;
while(r!=0)
{
a=b;
b=r;
r=a%b;
}
//当r=0时,b的值就是最大公约数
printf("%d\n",b);
return 0;
}