Shouku
1
Q:

gcd

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

New to Communities?

Join the community