Implementing least common multiple and greatest common divisor in C + +

Source: Internet
Author: User

#include <iostream>using namespace STD;intMainvoid){intX, Y, NUM1, num2, temp;printf("Please enter two positive integers: \ n");scanf("%d%d", &AMP;NUM1, &num2);if(Num1 < NUM2)//Exchange{num1^=num2;        NUM2^=NUM1;    num1^=num2;    } x = NUM1; y = num2;//Let the num1,num2 value be the same     while(Y! =0) {temp = x%y; x = y;//cout<< "x=" <<x<<endl;y = temp;//cout<< "x=" <<y<<endl;}printf("Their greatest common divisor are:%d\n", x);printf("Their least common multiple are:%d\n", num1*num2/x);return 0;}

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Implementing least common multiple and greatest common divisor in C + +

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.