gcd

int gcd(int a , int b)
{
   if(b==0) return a;
   a%=b;
   return gcd(b,a);
}

 

posted @ 2016-07-22 10:22  超级学渣渣  阅读(133)  评论(0编辑  收藏  举报