c語言怎么編二次函數(shù) 二次函數(shù)c語言函數(shù)編寫

C語言寫二次函數(shù)

首先你已經(jīng)很清楚的說明了你這個程序是用C語言寫二次函數(shù)的,而當(dāng)a=0時(shí),就不是二次函數(shù)了,應(yīng)該按照一次函數(shù)來進(jìn)行計(jì)算,否則 一個數(shù)除以0就沒有意義了.~

成都創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括縉云網(wǎng)站建設(shè)、縉云網(wǎng)站制作、縉云網(wǎng)頁制作以及縉云網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,縉云網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到縉云省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

#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("無實(shí)根\n");

}

return 0;

}

C語言怎樣設(shè)計(jì)二次函數(shù),請各位哥哥姐姐幫幫忙,

#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);

m=b*b-4*a*c;

if(m=0a!=0){

if(m0){

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

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

printf("兩根\n");

printf("x1=%f\n",x1);

printf("x2=%f\n",x2);}

else

printf("一根\n");

printf("x1=x2=%f\n",x1);}

else

{

if(a=0 b!=0) printf("根是x=-c/b");

if(a=0b=0) printf("為常函數(shù)");

if(a!=0) printf("無根\n");

}

system("PAUSE");

return 0; }

幫我看看求二次函數(shù)的C語言程序,要求要用函數(shù)來寫,謝了

我已經(jīng)按你的意思修改了,也運(yùn)行出來了,希望對你有幫助,代碼附帶在下面:

#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("沒有實(shí)根\n");

}

c語言,編寫一個函數(shù),計(jì)算二次方程ax2+bx+c =0,開頭用#include<stdio.h>

#includestdio.h

#includemath.h

void

fun(double

a,double

b,double

c)

{

double

p,q,x1,x2,disc;

disc=b*b-4*a*c;

if(disc0)

{

p=-b/(2.0*a);

q=(sqrt(disc))/(2.0*a);

x1=p+q;

x2=p-q;

printf("x1=%lf\tx2=%lf",x1,x2);

}

else

if(disc==0)

{

p=-b/(2.0*a);

x1=p;

printf("x1=x2=%lf",x1);

}

else

if(disc0)

{

disc=-disc;

p=-b/(2.0*a);

q=(sqrt(disc))/(2.0*a);

printf("x1=%lf+%lfi\n",p,q);

printf("x2=%lf-%lfi\n",p,q);

}

}

int

main()

{

double

a,b,c;

scanf("%lf,%lf,%lf",a,b,c);//a,b,c(三個數(shù))之間用逗號隔開,而不是空格!

fun(a,b,c);

return

0;

}

用C語言計(jì)算二次函數(shù)的問題.

你的

else if(b*b-4*a*c==0)

x1=x2=-b/2*a; printf("%.2f,%.2f",x1,x2);

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

x1=-b+$;

x2=-b-$;

printf("x1=%.2f\n x2=%.2f\n",x1,x2);

兩句加上大括號就行了。。。

if只能執(zhí)行到分號以前,所以加入大括號。另外x1=x2=-b/2*a MS沒加小括號

else if(b*b-4*a*c==0)

{x1=x2=-b/(2*a); printf("%.2f,%.2f",x1,x2);}

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

{ x1=-b+$;

x2=-b-$;

printf("x1=%.2f\n x2=%.2f\n",x1,x2);

}

還有。。

c語言解答二次函數(shù)

這個簡單啊

#includestdio.h

#includemath.h

main()

{

double a,b,c,w;

printf("請輸入三個數(shù)(方程的系數(shù)),中間用空格分開\n");

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

w=b*b-4*a*c;

if (w0)printf("方程無解\n");

else if(w==0)printf("方程有一個解:x=%lf\n",-b/(2*a));

else printf("方程有兩個解:x1=%lf,x2=%lf\n",(-b+sqrt(w))/(2*a),(-b-sqrt(w))/(2*a));

}

文章題目:c語言怎么編二次函數(shù) 二次函數(shù)c語言函數(shù)編寫
分享路徑:http://muchs.cn/article26/hjegjg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、品牌網(wǎng)站建設(shè)、虛擬主機(jī)網(wǎng)站導(dǎo)航、網(wǎng)站排名、商城網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化