C语言编程: 编写一个程序,根据下列公式,实现根据输入的x值,求出y的值,并输出x和y的值。

2024-11-26 16:21:52
推荐回答(2个)
回答1:

#include 
int main(void)
{
    float x,y;

    scanf("%f", &x);
    if(x>100)
        y = x+10;
    else if(x<-10)
        y=-x+10;
    else
        y=0;

    printf("x = %f, y = %f\n", x, y);
    return 0;
}

回答2:

#include "stdio.h"

int main(void)
{
int x;
scanf("%d", &x);
if (x > 100)
printf("%d", x + 10);
else if (x < -10)
printf("%d", -x + 10);
else
printf("0");
return 0;
}