HCF and LCM using Python Get link Facebook X Pinterest Email Other Apps - January 04, 2021 a=36b=56d_a=a d_b=b r=a%b while r !=0: a,b=b,r r=a%b hcf=b lcm=(d_a*d_b)/hcfprint("hcf:",hcf," ","lcm:",lcm) Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment