Find the other number when LCM and HCF given in C++


Suppose we have a number A, and LCM and GCD values, we have to find another number B. If A = 5, LCM is 25, HCF = 4, then another number will be 4. We know that −

$$๐ด∗๐ต=๐ฟ๐ถ๐‘€∗๐ป๐ถ๐น$$

$$๐ต= \frac{LCM*HCF}{A}$$

Example

 Live Demo

#include <iostream>
using namespace std;
int anotherNumber(int A, int LCM, int GCD) {
   return (LCM * GCD) / A;
}
int main() {
   int A = 5, LCM = 25, GCD = 4;
   cout << "Another number is: " << anotherNumber(A, LCM, GCD);
}

Output

Another number is: 20

Updated on: 21-Oct-2019

42 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements