沐亦2333 发表于 2021-6-3 16:22:59

急!!!C语言作业,不会这个程序怎么写

功能:对任意输入的 x,用下式计算并输出 y 的值。
       5      x<10
      y=    0      x=10
         -5      x>10
#include <stdio.h>
#include<stdlib.h>
int fun(int n)
{
/**********Program**********/






/**********End**********/
}

main ()
{
      intx,y;
      printf("enter x:");
      scanf("%d",&x);
      y=fun(x);
      printf("x=%d,y=%d\n",x,y);
      system("pause");
}

134饿啊是的 发表于 2021-6-3 16:29:24

if (n<10){ return 5;}
else if (n==10) {return 0;}
else if (n> 10) {return -5;}
页: [1]
查看完整版本: 急!!!C语言作业,不会这个程序怎么写