gpt4 book ai didi

c++ - GCD 程序中出现奇怪的 APPCRASH 错误?

转载 作者:太空宇宙 更新时间:2023-11-04 12:58:42 24 4
gpt4 key购买 nike

using namespace std;
#include <iostream>
int GCD(int a, int b){
while(b!=0){
int temp=b;
b=a%b;
a=temp;
}
return a;
}
int main(){
int a=0, b=0;
cout<<"Please enter two integers to find their GCD using the Euclidean algorithm.";
cin>>a>>b;
cout<<"The greatest common divisor of "<<a<<" and "<<b<<" is "<<GCD(a,b)<<".";
}

这是一个简单的 C++ 程序,可以找到两个数的最大公约数,并且运行良好。但是,如果我改变

int GCD(int a, int b){
while(b!=0){

进入 while(a!=0){ 时,我遇到了 APPCRASH 错误,异常代码 c0000094 终止了我的运行。我正在运行 C++11 ISO 标准,我的 IDE 是 Code::Blocks 16。

最佳答案

你只是有一个“除以 0”的错误。

演示:

#include <iostream>

using namespace std;

int GCD(int a, int b) {
while (a != 0) {
int temp = b;

if (b == 0)
{
cout << "Divison by 0\n";
return 0;
}

b = a % b;
a = temp;
}
return a;
}

int main() {
int a = 0, b = 0;
cout << "Please enter two integers to find their GCD using the Euclidean algorithm.";
cin >> a >> b;
cout << "The greatest common divisor of " << a << " and " << b << " is " << GCD(a, b) << ".";
}

输入:

5
5

免责声明:本程序只是演示了“被0除”的错误,仍然不正确。

关于c++ - GCD 程序中出现奇怪的 APPCRASH 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45322064/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com