這個(gè)簡(jiǎn)單啊
成都創(chuàng)新互聯(lián)公司是專業(yè)的古藺網(wǎng)站建設(shè)公司,古藺接單;提供成都做網(wǎng)站、網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行古藺網(wǎng)站開發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
#includestdio.h
#includemath.h
main()
{
double a,b,c,w;
printf("請(qǐng)輸入三個(gè)數(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("方程有一個(gè)解:x=%lf\n",-b/(2*a));
else printf("方程有兩個(gè)解:x1=%lf,x2=%lf\n",(-b+sqrt(w))/(2*a),(-b-sqrt(w))/(2*a));
}
#include stdio.h
int main(void)
{
double a,b,c,d,e;
double x1,x2;
printf("請(qǐng)輸入ax^2+bx +c = 0中a,b,c的值");
scanf("%lf,%lf,%lf",a,b,c);
e = b * b - 4 * a * c;
if (e0) {
printf("無解,請(qǐng)重新輸入\n");
scanf("%lf,%lf,%lf",a,b,c);
}
printf("輸入正確,正在計(jì)算....\n");
d = sqrt(e);
x1 = (-b + d)/(2 * a);
x2 = (-b - d)/(2 * a);
printf("x1=%f\n",x1);
printf("x2=%f\n",x2);
return 0;
}
#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;
}
#includestdio.h
#includemath.h
#definedeatapow(b,2)-4*a*c
intmain()
{
doublea,b,c;
scanf("%lf%lf%lf",a,b,c);
if(deata0)printf("方程無解\n");
elseif(deata==0)printf("方程有兩個(gè)相同的解:%lf",(-b/2*a));
elseif(deata0)printf("方程有兩個(gè)不一樣的解分別為%lf%lf",(-b+sqrt(deata))/2*a,(-b-sqrt(deata))/2*a);
return0;
}
擴(kuò)展資料
二次函數(shù)y=ax2+bx+c的意義
1、a的符號(hào)確定拋物線的開口方向。
2、a,b共同確定拋物線的對(duì)稱軸x=﹣b/2a
3、c確定拋物線與y軸的交點(diǎn)(0,c)是在x軸的上方、下方或原點(diǎn).
4、b2-4ac的符號(hào)確定拋物線與x軸的位置關(guān)系。
5、若△=b2-4ac0,設(shè)拋物線與x軸的兩個(gè)交點(diǎn)為A(x?,0),B(x?,0),則①A,B的中點(diǎn)(x?+x?/2,0)為拋物線的
對(duì)稱軸與x軸的交點(diǎn)(﹣b/2a,0),即x?+x?/2=﹣b/2a
一:scanf("%3f%3f%3f",a,b,c); 這里要求輸入數(shù)據(jù)必須為三位數(shù),最好改成:
scanf("%f%f%f",a,b,c); 去掉限定
二:
void tonggen(float a,float b,float k)
//float a,b,k; 如果這樣定義,則上一行的函數(shù)定義應(yīng)該寫成:void tonggen( a, b, k) 二者不能同存
{
float x;
x=(-b)/(2*a); //這里應(yīng)該為2*a
printf("二次函數(shù)為同根為x=%3f",x);
}