Skip to content

Raj-8/LCM_GCD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

LCM_GCD

int gcd1(int a,int b){ if(b==0)return a;

return gcd1(b,a%b); }

#lcm

int lcm1(int a ,int b){

return (a/gcd1(a,b))*b;

}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published