报错求助
查看原帖
报错求助
823906
13813675795hzq楼主2023/1/6 15:32
#include <iostream>
using namespace std;

int main()
{
    double x , y;
    cin >> x;
    if (x < 5) y = 2.5 - x;
    else if (x < 10) y = 2 − 1.5 * (x − 3) * (x − 3);
    else y = x / 2 − 1.5;
    printf("%.3f" , y);
    return 0;
}
2023/1/6 15:32
加载中...