Maximum common divisor and minimum common multiple, and minimum common multiple

Source: Internet
Author: User

Maximum common divisor and minimum common multiple, and minimum common multiple
Minimum Public multiple Algorithm

Least common multiple = the product of two integers; maximum common number

Algorithm for Finding the maximum common approx.

Phase Division

There are two integers a and B:
① A % B get the remainder c
② If c = 0, B is the maximum common divisor of two numbers.
③ If c = 0, a = B, B = c, and then go back to execute ①

# Include <iostream> # include <cmath> using namespace std; const float EPS = 0.00001; int bei (int a, int B); int yue (int a, int B ); int main () {int a, B; while (cin> a> B) {cout <bei (a, B) <endl ;}} int bei (int a, int B) {return a * B/yue (a, B);} int yue (int a, int B) {int n = a % B; while (n) {a = B; B = n; n = a % B;} return B ;}

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.