我已經(jīng)按你的意思修改了,也運行出來了,希望對你有幫助,代碼附帶在下面:
創(chuàng)新互聯(lián)建站服務項目包括黃石網(wǎng)站建設、黃石網(wǎng)站制作、黃石網(wǎng)頁制作以及黃石網(wǎng)絡營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關系等,向廣大中小型企業(yè)、政府機構等提供互聯(lián)網(wǎng)行業(yè)的解決方案,黃石網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟效益。目前,我們服務的客戶以成都為中心已經(jīng)輻射到黃石省份的部分城市,未來相信會繼續(xù)擴大服務區(qū)域并繼續(xù)獲得客戶的支持與信任!
#includestdio.h
#includemath.h
float t,x1,x2;
void main()
{
void situ1(float a,float b,float c);
void situ2(float a,float b,float c);
void situ3();
float x,a,b,c;
scanf("%f%f%f",a,b,c);
if (a==0)
{
x=-c/b;
printf("x=%.2f\n",x);
}
else
{
t=b*b-4*a*c;
if (t0)
situ1(a,b,c);
else if(t==0)
situ2(a,b,c);
else
situ3();
}
}
void situ1(float a,float b,float c)
{
x1=(-b+sqrt(t))/(2*a);
x2=(-b-sqrt(t))/(2*a);
printf("x1=%.2f\tx2=%.2f\n",x1,x2);
}
void situ2(float a,float b,float c)
{
x1=x2=(-b+sqrt(t))/(2*a);
printf("x1=x2=%.2f\n",x1);
}
void situ3()
{
printf("沒有實根\n");
}
#include stdio.h
#include stdlib.h
#include math.h
int main()
{
float a,b,c,l,t,x1,x2;
printf("input three numbers\n");
scanf("%f%f%f",a,b,c);
t=b*b-4*a*c;
if(t0)
{
x1=(-b+sqrt(t))/(2*a);
x2=(-b-sqrt(t))/(2*a);
printf("%f\n%f\n",x1,x2);
}
else if(t==0)
{
x1=-(b/(2*a));
printf("%f\n%f\n",x1,x1);
}
else
{
l=sqrt(-t)/2/a;
t=-b/2/a;
printf("%f%+fi\n%f%+fi",t,l,t,-l);
}
return 0;
}
首先你已經(jīng)很清楚的說明了你這個程序是用C語言寫二次函數(shù)的,而當a=0時,就不是二次函數(shù)了,應該按照一次函數(shù)來進行計算,否則 一個數(shù)除以0就沒有意義了.~
#include stdio.h
#include stdlib.h
#include math.h
int main()
{
float a,b,c;
float x1,x2,m;
printf("input number a=:");
scanf("%f",a);
printf("input number b=:");
scanf("%f",b);
printf("input number c=:");
scanf("%f",c);
if(a==0)
printf("一根:%f\n",c*(-1)/b);
else if(a==0b==0)
printf("無意義!");
else
{
m=b*b-4*a*c;
if(m0)
{
printf("兩根\n");
printf("x1=%f\n",(-b+sqrt(m))/(2*a));
printf("x2=%f\n",(-b-sqrt(m))/(2*a));
}
else if(m==0)
printf("x1=x2=%f\n",x1);
}
else
printf("無實根\n");
}
return 0;
}