testfor1


私信TA

用户名:dotcpp0660482

访问量:165

签 名:

你麻麻的,打比赛撕了蒜了

等  级
排  名 3757
经  验 1849
参赛次数 0
文章发表 10
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:还是定义函数好用,这不用管负值,用if分类传-b*b+4ac即可解决gen小于0

注意事项:

参考代码:

#include<iostream>
#include<cmath>//用sqrt开方
#include<iomanip>//小数点
using namespace std;
float gen(float a,float b,float c){
    float x1,x2;
sqrt(b*b-4*a*c);
cout.setf(ios::fixed);
cout<<setprecision(2);
x1=(-b+sqrt(b*b-4*a*c))/2*a;//值1大
x2=(-b-sqrt(b*b-4*a*c))/2*a;//值2小
cout<<x1<<" "<<x2;
}

int main()
{
   float a,b,c;
   cin>>a>>b>>c;
   gen(a,b,c);
    return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »