我有以下简单算法用于计算二次方程的根
#include <iostream>
#include <math.h>
using namespace std;
int main(){
float x,x1;
x=0;x1=0;
int a=1;
int b;
int c;
cout<<"enter the second term:"<<endl;
cin>>b;
cout<<"enter the third term:";
cin>>c;
float d=b^2-4*a*c;
if (d<0){
cout<<"the equation has not real solution :"<<endl;
}
else if (d==0) { x=(-b/2); x1=x;}
else
{
x=(-b+sqrt(d))/2;x1=(-b-sqrt(d))/2;
}
cout<<"roots are :"<<x<< " "<<x1<< " "<<endl;
return 0;
}
但它给了我警告
arning C4244: '=' : conversion from 'int' to 'float', possible loss of data
当我输入-6和9时,它给出的根是6和0这当然不是真的请帮帮我
答案 0 :(得分:6)
^
是按位xor运算符,而不是幂,正如您可能认为的那样。要将数字提高到任意功率,请使用std::pow
(来自标准标题cmath
)。对于2的幂,您可以使用x * x
。
答案 1 :(得分:3)
b ^ 2表示使用XOR运算符,我认为这不是您的意思。尝试使用b * b。将a,b和c声明为浮点数而不是整数也可能有所帮助。
答案 2 :(得分:2)
除了对xor操作的正确评论
你无法对int进行所有计算,然后将其转换为float。这样div的结果就会四舍五入。尝试在计算过程中投射b,如(float)b。或者将所有a,b,c和d定义为浮点数
答案 3 :(得分:1)
^是一个按位xor运算符,即编译器发出警告的原因。尝试使用math.h头文件中声明的pow函数。