Divisor, common multiple

1 ll gcd(int a,int b){ 
2     return b?gcd(b,a%b):a;
3 }

 

Guess you like

Origin www.cnblogs.com/hhyx/p/12466801.html