Loading

gcd

int gcd(int a,int b)
{
  if(b) while((a%=b)&&(b%=a));
  return a+b;
}
posted @ 2020-08-04 17:50  zzqDeco  阅读(91)  评论(0编辑  收藏  举报