Write a program to calculate the Least Common Multiple (LCM) of two numbers. Example : Input : a = 10, b =15 Output : 30 a = 5, b = 7 Output : 35
Write a program to calculate the Least Common Multiple (LCM) of two numbers. Example : Input : a = 10, b =15 Output : 30 a = 5, b = 7 Output : 35
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: easy
标签: interviewbit, mindtree, company-specific
目标公司: Mindtree
参考答案摘要
Input : a = 10, b =15 Output : 30 a = 5, b = 7 Output : 35 Approach: Let us assume the two numbers are a and b. Then, the two numbers have the following relationship : a * b = LCM(a, b) * GCD(a, b) or...
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。