freeCodeCamp/guide/english/tools/calculators/least-common-multiple-calcu.../index.md

16 lines
645 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Least Common Multiple Calculator
---
## Least Common Multiple Calculator
A Least Common Multiple(also known as LCM) of two numbers is the smallest number which can be divided by both numbers.
2018-10-12 19:37:13 +00:00
To calculate the LCM(Least Common Multiple) online, use:
* [LCM Calculator](https://www.calculatorsoup.com/calculators/math/lcm.php)
2018-10-12 19:37:13 +00:00
Or if you want to implement it yourself or want to understand how it's calculated, look here:
* [Program to find LCM of 2 numbers](https://www.geeksforgeeks.org/program-to-find-lcm-of-two-numbers/)
2018-10-12 19:37:13 +00:00
#### More Information:
* [Least Common Multiple Wiki](https://en.wikipedia.org/wiki/Least_common_multiple)