求方程 的根,用三个函数分别求当b^2-4ac大于0、等于0、和小于0时的根,并输出结果。从主函数输入a、b、c的值。
标签:c++ iostream namespace 编程 数学
求方程 的根,用三个函数分别求当b^2-4ac大于0、等于0、和小于0时的根,并输出结果。从主函数输入a、b、c的值。
a b c
x1=? x2=?
4 1 1
x1=-0.125+0.484i x2=-0.125-0.484i
主函数已给定如下,提交时不需要包含下述主函数
代码如下:
#include <iostream> #include <iomanip> #include <cmath> using namespace std; void shigen(float a,float b,float c) { float x1,x2; x1=(-b+sqrt(c))/(2*a); x2=(-b-sqrt(c))/(2*a); cout<<setiosflags(ios::fixed)<<setprecision(3); cout<<"x1="<<x1<<" "<<"x2="<<x2; } void denggen(float a,float b) { float x1,x2; x1=x2=-b/(2*a); cout<<"x1="<<x1<<" "<<"x2="<<x2; } void xugen(float a,float b,float c) { float p,q; p=-b/(2*a); q=sqrt(-c)/(2*a); cout<<setiosflags(ios::fixed)<<setprecision(3); cout<<"x1="<<p<<"+"<<q<<"i"<<" "<<"x2="<<p<<"-"<<q<<"i"; } int main() { float a,b,c,q; void shigen(float,float,float); void denggen(float ,float ); void xugen(float ,float ,float); cin>>a>>b>>c; q=b*b-4*a*c; if(q>0) shigen(a,b,q); else if(q==0) denggen(a,b); else xugen(a,b,q); return 0; }
运行结果:
数学没学好,还真不好学编程,我都不知道虚根的实部和虚部怎么求的,果断又问的度娘
标签:c++ iostream namespace 编程 数学
原文地址:http://blog.csdn.net/liuchang54/article/details/42236399