
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
how to find a lcm of 2 number.
Typology: Assignments
1 / 1
This page cannot be seen from the preview
Don't miss anything!
#include <stdio.h> int main() { int n1, n2, min; printf("Enter two positive integers: "); scanf("%d %d", &n1, &n2);
// maximum number between n1 and n2 is stored in min min = (n1 > n2)? n1 : n2;
while (1) { if (min % n1 == 0 && min % n2 == 0) { printf("The LCM of %d and %d is %d.", n1, n2, min); break; } ++min; } return 0; }
Enter two positive integers: 15 20 The LCM of 15 and 20 is 60.