RosettaCodeData/Task/Least-common-multiple/Icon/least-common-multiple-1.icon

6 lines
104 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
link numbers
procedure main()
write("lcm of 18, 36 = ",lcm(18,36))
write("lcm of 0, 9 = ",lcm(0,9))
end