橘黄色日落


私信TA

用户名:uq_47599774882

访问量:10411

签 名:

等  级
排  名 237
经  验 6101
参赛次数 2
文章发表 106
年  龄 18
在职情况 学生
学  校 皇家妈祖学院
专  业 数据科学与大数据技术

  自我简介:

在校大学生一枚

解题思路:

注意事项:

参考代码:

#include<stdio.h>

#include<math.h>

int main()

{

      double a,b,c,x1,x2;

      scanf("%lf%lf%lf",&a,&b,&c);

      x1=(-b+sqrt(b*b-4*a*c))/(2*a);

      x2=(-b-sqrt(b*b-4*a*c))/(2*a);

      if(x1>x2)

      {

           printf("%.2lf %.2lf",x1,x2);

      }

      else{

            printf("%.2lf %.2lf",x2,x1);

      }

      return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »