编写C语言程序:求出方程Y=3X^2+6X+9 的最小值 10

Y没有范围... Y没有范围 展开
 我来答
uljfwffj1
2008-11-17 · TA获得超过6202个赞
知道大有可为答主
回答量:1191
采纳率:87%
帮助的人:580万
展开全部
#include"stdio.h"
void main()
{
int a,b,c;
printf("请输入整数系数\n");
scanf("%d %d %d",&a,&b,&c);
printf("%f",(4.0*a*c-b*b)/(4*a));
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
透明的存在
2008-11-17 · TA获得超过650个赞
知道小有建树答主
回答量:416
采纳率:0%
帮助的人:149万
展开全部
6
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
冰雨落璃5b
2008-11-17 · TA获得超过232个赞
知道小有建树答主
回答量:252
采纳率:0%
帮助的人:0
展开全部
#include<stdio.h>
#include<conio.h>
void main()
{
int x,a,b,c;
float Y;
clrscr();
printf("Please input 3 numbers:\n");
scanf("%d%d%d",&a,&b,&c);
printf("The equation is:Y=%d*x^2+%d*x+%d",a,b,c);
if(a!=0&&a>0)
{
x=-b/(2*a);
Y=(4*a*c-b*b)/(4*a);
printf("\nWhen x is %d the equation can make a min\n",x);
printf("The min of the equation is:%f",Y);
}
else if(a!=0&&a<0)
{
x=-b/(2*a);
Y=(4*a*c-b*b)/(4*a);
printf("\nWhen x is %d the equation can make a max\n",x);
printf("The max of the equation is:%f",Y);
}
getch();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式