2008
06-06

#include<stdio.h>
/**/   #include “conio.h”              /**/


double fun(double x)
{
  /**/    double y;
          y=x*x-2*x+6;
          return y;
                  /**/
}


void main()
{
  double x,y1,y2;
  clrscr();
  printf(“Please input x:”);
  scanf(“%lf”,&x);
  y1=fun(x+8);
  y2=fun(/**/  sin(x)        /**/);
  printf(“\nf(x+8)=%.3lf”,y1);
  printf(“\nf(sinx)=%.3lf”,y2);
  getch();
}



/*输入2.0   f(x+8)=86.000   f(sinx)=5.008*/


作业请教.7》有 1 条评论

  1. 落叶枫香 说:

    #include<stdio.h>
    #include<conio.h>
    #include<cmath>
    double fun(double x)
    {
     double y;
        y=x*x-2*x+6;
     return y;
    }
    void main()
    {
      double x,y1,y2;
      printf(“Please input x:”);
      scanf(“%lf”,&x);
      y1=fun(x+8);
      printf(“\nf(x+8)=%.3lf”,y1);
      y2=fun(sin(x));
      printf(“\nf(sinx)=%.3lf”,y2);
      getch();
    }

    这样就可以了,sin一定要调用cmath的头文件的,至于那个clrscr();我也不知道怎么用,也不知道你想起到什么样子的效果。因为我也是新手~

留下一个回复