mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
25 lines
519 B
Python
25 lines
519 B
Python
from .__init__ import *
|
|
|
|
|
|
def lcmFunc(maxVal=20, format='string'):
|
|
a = random.randint(1, maxVal)
|
|
b = random.randint(1, maxVal)
|
|
c = a * b
|
|
x, y = a, b
|
|
|
|
while y:
|
|
x, y = y, x % y
|
|
d = c // x
|
|
|
|
if format == 'string':
|
|
problem = f"LCM of {a} and {b} ="
|
|
solution = str(d)
|
|
return problem, solution
|
|
elif format == 'latex':
|
|
return "Latex unavailable"
|
|
else:
|
|
return a, b, d
|
|
|
|
|
|
lcm = Generator("LCM (Least Common Multiple)", 9, lcmFunc, ["maxVal=20"])
|