⽤c语⾔求解⼀元⼆次⽅程
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {明解c语言
int a,b,c;                                                                      //声明函数中的a,b,c
printf("求ax^2+bx+c=0的解,输⼊a,b,c:");                                        //提⽰输⼊a,b,c
scanf("%d%d%d",&a,&b,&c);                                                      //读取输⼊的a,b,c
if(pow(b,2)-4*a*c<0)                                                            //如果b平⽅-4ac⼩于0
{
printf("此⽅程⽆解!");                                                    //输出⽅程⽆解
}
else if(pow(b,2)-4*a*c==0)                                                    //如果b平⽅-4ac等于0
{
printf("⽅程有⼀解,解为%d",-b/(2*a));                                    //输出⽅程有⼀解,解为-2a分之b
}
else if(pow(b,2)-4*a*c>=0)                                                    //如果b平⽅-4ac⼤于0
{
printf("⽅程有两解,解分别为%f,%f",(-b+sqrt(pow(b,2)-4*a*c))/(2*a),(-b-sqrt(pow(b,2)-4*a*c))/(2*a)); //输出两解  }
else                                                                          //否则
{
printf("输⼊错误!");                                                      //输出输⼊错误
}
return 0;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。