解题思路:调用 math.h 函数库 使用求根公式
注意事项:算delta时注意运算优先级、输出x1,x2时保留小数
参考代码:
#include<stdio.h>
#include<math.h>
void sqrt1(int a,int b,int c)
{
float x1,x2;
int delta = b*b-4*a*c;
x1= (-b + sqrt(delta))/(2*a);
x2= (-b - sqrt(delta))/(2*a);
printf("x1=%.3f x2=%.3f",x1,x2);
}
void sqrt2(int a,int b,int c)
{
int x1 , x2 ;
x1 = -b/(2*a);
x2 = x1;
printf("x1=%d x2=%d",x1,x2);
}
void sqrt3(int a,int b,int c)
{
float x1 , x2 ;
int delta = b*b-4*a*c;
x1 = -b/(2.0*a);
x2 = sqrt(-delta)/(2.0*a);
printf("x1=%.3f+%.3fi ",x1,x2);
printf("x2=%.3f-%.3fi",x1,x2);
}
int main()
{
int a , b , c;
scanf("%d %d %d",&a,&b,&c);
if(b*b-4*a*c>0)
{
sqrt1(a,b,c);
}
if(b*b-4*a*c==0)
{
sqrt2(a,b,c);
}
if(b*b-4*a*c<0)
{
sqrt3(a,b,c);
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:552 |
1014题解浏览:524 |
简单的a+b (C语言代码)浏览:444 |
排序算法(选择,插入,冒泡)浏览:876 |
C语言程序设计教程(第三版)课后习题7.4 (C++代码)浏览:571 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:487 |
WU-蓝桥杯历届试题-蚂蚁感冒 (C++代码)浏览:1095 |
数组输出 (C语言代码)浏览:495 |
字符逆序 (Java代码)浏览:536 |
C语言程序设计教程(第三版)课后习题4.9 (Java代码)浏览:798 |