gcd(x,y) = y; 如果y除以x而没有余数
gcd(x,y) = gcd(y,x/y的余数);否则
下面的程序显示了递归的 C++ 实现:
// This program demonstrates a recursive function to// calculate the greatest common divisor (gcd) of two numbers.#include <iostream>using namespace std;// Function prototypeint gcd(int,int);int main(){ int num1,num2; cout << "Enter two integers: "; cin >> num1 >> num2; cout << "The greatest common divisor of " << num1; cout << " and " << num2 << " is "; cout << gcd(num1,num2) << endl; return 0;}int gcd(int x,int y){ if (x % y == 0) //base case return y; else return gcd{y,x % y);}程序输出结果:
Enter two integers: 49 28
The greatest common divisor of 49 and 28 is 7
以上是内存溢出为你收集整理的C++最大公约数(递归)详解全部内容,希望文章能够帮你解决C++最大公约数(递归)详解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)