Computer Science, asked by milli4969, 10 months ago

Which functions calculate the hcf two or more integers

Answers

Answered by muhammadarome678
0

Answer:

A simple solution is to find all prime factors of both numbers, then find intersection of all factors present in both numbers. Finally return product of elements in the intersection.

An efficient solution is to use Euclidean algorithm which is the main algorithm used for this purpose. The idea is, GCD of two numbers doesn’t change if smaller number is subtracted from a bigger number.

filter_none

Please mark as the brainliest......

Explanation:

Similar questions