C language · Least common multiple

Source: Internet
Author: User
Tags greatest common divisor

Problem description Write a function LCM to find the least common multiple of two positive integers. Sample input An input example that satisfies the requirements of the topic.
Cases:
3 5 Sample output corresponds to the output of the sample input above.
Cases:
Data size and convention the range of each number in the input data.
Example: Two numbers are less than 65536.method One:

/*
Seeking greatest common divisor by phase subtraction
least common multiple = Two integer of the Product ÷ greatest common divisor;
*/
#include <stdio.h>
int main () {
int m,n,a,b,c;
scanf ("%d%d", &m,&n);
A=m;
B=n;
while (a!=b) {
if (a>b) {
A = a-B;
} else {
b = b-a;
}
}
printf ("Greatest common divisor is a or B, i.e.:%d", a);
printf ("Least common multiple is m*n/b, i.e.:%d", m*n/a);
}

Method Two:

/* least common multiple = Two integer of the Product ÷ greatest common divisor */
#include <stdio.h>
int main () {
int m,n,a,b,c;
scanf ("%d%d", &m,&n);
A=m;
B=n;
while (b!=0) {
C=a%b;
A=b;
B=c;
}
printf ("%d", m*n/a);
}

C language · Least common multiple

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.