我是c++的初学者,刚才写了一段程序,请大侠们帮我改一下!
#include<iostream>#include<math.h>voidroot(inta,intb,intc);usingnamespacestd;intmain(...
#include<iostream>
#include<math.h>
void root(int a,int b,int c);
using namespace std;
int main()
{
int a,b,c;
cout<<"请输入三个系数:"<<endl;
cin>>a>>b>>c;
root(a,b,c);
return 0;
}
void root(int a,int b,int c)
{
double qroot;
double jroot;
if(a!=0)
{
qroot=(-b+sqrt(b*b+4*a*c))/(2*a);
jroot=(-b-sqrt(b*b-4*a*c))/(2*a);
cout<<"这两个数的值为:"<<endl;
cout<<qroot<<endl<<jroot;
}
else
{
cout<<"输入错误!"<<endl;
}
}
为什么显示不出来负值? 展开
#include<math.h>
void root(int a,int b,int c);
using namespace std;
int main()
{
int a,b,c;
cout<<"请输入三个系数:"<<endl;
cin>>a>>b>>c;
root(a,b,c);
return 0;
}
void root(int a,int b,int c)
{
double qroot;
double jroot;
if(a!=0)
{
qroot=(-b+sqrt(b*b+4*a*c))/(2*a);
jroot=(-b-sqrt(b*b-4*a*c))/(2*a);
cout<<"这两个数的值为:"<<endl;
cout<<qroot<<endl<<jroot;
}
else
{
cout<<"输入错误!"<<endl;
}
}
为什么显示不出来负值? 展开
4个回答
展开全部
错误的地方我写出来了。不过sqrt函数的原型是double sqrt(double num),所以我建议把b*b-4*a*c强制转化成double型的。我觉得这样更好一点。当然你也可以把a,b,c定义成double型的。
#include<iostream>
#include<math.h>//改成#include<cmath>更标准
void root(int a,int b,int c);
using namespace std;
int main()
{
int a,b,c;
cout<<"请输入三个系数:"<<endl;
cin>>a>>b>>c;
root(a,b,c);
return 0;
}
void root(int a,int b,int c)
{
double qroot;
double jroot;
if(a!=0)
{//这里加一个判断b*b-4*a*c是否大于等于0比较好
qroot=(-b+sqrt(b*b-4*a*c))/(2*a);//你的程序中错写成了:qroot=(-b-sqrt(b*b+4*a*c))/(2*a);是减号才对,不是加号
jroot=(-b-sqrt(b*b-4*a*c))/(2*a);
cout<<"这两个数的值为:"<<endl;
cout<<qroot<<endl<<jroot;
}
else
{
cout<<"输入错误!"<<endl;
}
}
我空间里有个类似程序,还可以求复根。感兴趣的话可以去看,也许对你有用。
#include<iostream>
#include<math.h>//改成#include<cmath>更标准
void root(int a,int b,int c);
using namespace std;
int main()
{
int a,b,c;
cout<<"请输入三个系数:"<<endl;
cin>>a>>b>>c;
root(a,b,c);
return 0;
}
void root(int a,int b,int c)
{
double qroot;
double jroot;
if(a!=0)
{//这里加一个判断b*b-4*a*c是否大于等于0比较好
qroot=(-b+sqrt(b*b-4*a*c))/(2*a);//你的程序中错写成了:qroot=(-b-sqrt(b*b+4*a*c))/(2*a);是减号才对,不是加号
jroot=(-b-sqrt(b*b-4*a*c))/(2*a);
cout<<"这两个数的值为:"<<endl;
cout<<qroot<<endl<<jroot;
}
else
{
cout<<"输入错误!"<<endl;
}
}
我空间里有个类似程序,还可以求复根。感兴趣的话可以去看,也许对你有用。
展开全部
是不是结果没有负数?
那
请输入: 1 10 1
或者 -1 10 -1
看看结果有没有负值。
那
请输入: 1 10 1
或者 -1 10 -1
看看结果有没有负值。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
负值在计算机中是以补码形式存在的,当然显示不出来
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-03-09
展开全部
Are you new hand?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询