一道简单的c语言程序题
#include<stdio.h>main(){floatx,t,i,j;x=0;while(x<=2){t=2*x*x*x-3*x*x*x*x+6*x*x*x*x*x-...
#include <stdio.h>
main()
{
float x,t,i,j;
x=0;
while(x<=2)
{
t=2*x*x*x-3*x*x*x*x+6*x*x*x*x*x-4*x+50;
x=x+0.2;
printf("%.2f\n",t);
}
已知 y=2x 3 -3x 4 +6x 5 -4x+50 ,从 x=0 到 x=2 ,每隔 0.2 计算并输出 y 的值,然后输出 y 的最大值和最小值。
我就会前面的,后面的不会写了。。。。 展开
main()
{
float x,t,i,j;
x=0;
while(x<=2)
{
t=2*x*x*x-3*x*x*x*x+6*x*x*x*x*x-4*x+50;
x=x+0.2;
printf("%.2f\n",t);
}
已知 y=2x 3 -3x 4 +6x 5 -4x+50 ,从 x=0 到 x=2 ,每隔 0.2 计算并输出 y 的值,然后输出 y 的最大值和最小值。
我就会前面的,后面的不会写了。。。。 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询