我正在编写一个C++程序,用于查找三次方程的实根x,其中a≠0,b=0。
不幸的是,我无法输出";测试用例1&4〃;(链接下方提供的ps.sample输出(。也许我的代码中有任何逻辑语法?如果有人能告诉我正确的方法,我将不胜感激。
#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;
int main (){
int a , b, c , d;
double x , y;
double interval1, interval2;
bool stop;
b = 0;
x = 0;
stop = true;
cin >> a;
cin >> c;
cin >> d;
interval1 = a * pow(x , 3) + b * pow(x , 2) + c * x + d;
if (interval1 < 0){
interval2 = interval1 *-1;
}else{
interval2 = interval1;
interval1 = interval2 * -1;
}
while (stop=true){
x = interval1;
y = a * pow(x , 3) + b * pow(x , 2) + c * x + d;
if(y>0 && y<0.001){
break;
}else{
if (x<interval2) {
interval1 = x + 0.000001;
}else{
stop = false;
}
}
}
if (x==-0){
x = 0;
}
if(a==0){
cout << "NOT VALID" << endl;
}else{
std::cout << std::fixed << std::setprecision(3) << x;
}
return 0;
}
样本输出程序的伪代码
您的代码即将完成。你需要提高一些点。
-
将
int a , b, c , d;
更改为double a , b, c , d;
-
将条件
while (stop=true)
更改为while (stop==true)
我进行了测试,它可以作为您的示例使用。