谭浩强c++第四章第2题 求方程ax^2+bx+c=0的根,用3个函数分别求当b^2-4ac大于0、等于0和小于0时的根,并输出结果。从主函数输入a, b, c的值。

#include<iostream>
#include<cmath>
#include <iomanip>
using namespace std;
int main()
{
  int a,b,c;
  void bigger(int,int,int);
  void smaller(int,int,int);
  void equal(int,int);
  cout<<"输入abc的值:";
  cin>>a>>b>>c;
  double dec = b*b-4*a*c;
  if(dec > 0){
    bigger(a,b,c);
  }else if(dec<0){
    smaller(a,b,c);
  }else{
    equal(a,b);
  }
  return 0;
}

void bigger(int n ,int m ,int j){
    double x1,x2;
    double temp =sqrt(m*m-4*n*j);
    x1 = ((-1)*m+temp)/(2*n);
    x2 = ((-1)*m-temp)/(2*n);
    cout<<"值为:"<<"x1="<<x1<<" "<<"x2="<<x2<<endl;
}

void equal(int n ,int m ){
    double x;
    x=((-1)*m)/(2*n);
    cout<<"值为:"<<"x="<<x<<endl;
}

void smaller(int n ,int m ,int j){
  cout<<"无解"<<endl;
}

  • 0
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值