代码拉取完成,页面将自动刷新
#include <iostream>
// 计算两个整数的最大公约数
int commonDivisor(int x1, int x2) {
while (x2 != 0) {
int temp = x2;
x2 = x1 % x2;
x1 = temp;
}
return x1;
}
// 重载函数,计算三个整数的最大公约数
int commonDivisor(int x1, int x2, int x3) {
int gcd12 = commonDivisor(x1, x2);
return commonDivisor(gcd12, x3);
}
// 重载函数,计算四个整数的最大公约数
int commonDivisor(int x1, int x2, int x3, int x4) {
int gcd12 = commonDivisor(x1, x2);
int gcd34 = commonDivisor(x3, x4);
return commonDivisor(gcd12, gcd34);
}
int main() {
int a, b, c, d;
// 用户输入三个整数
std::cout << "请输入3个整数: ";
std::cin >> a >> b >> c;
std::cout << "---------------------------" << std::endl;
std::cout << "整数" << a << "," << b << "," << c << "的最大公约数为: " << commonDivisor(a, b, c) << std::endl;
// 用户输入四个整数
std::cout << "请输入4个整数: ";
std::cin >> a >> b >> c >> d;
std::cout << "---------------------------" << std::endl;
std::cout << "整数" << a << "," << b << "," << c << "," << d << "的最大公约数为: " << commonDivisor(a, b, c, d) << std::endl;
return 0;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。