想要编写一程序并实现以下功能,请问该如何操作

x(x只考虑整数int且必须定义为int、但F(x)完全可能超过int的表示范围)通过键盘输入(输入前给出提示Please input x:),然后计算并在屏幕上输出函数值。编程可用素材:printf("Please input x: ")...、printf("\nF(...) = ..."...。
┌ -5x+27 (x<0)
F(x)= ├ 7909 (x=0)
└ 2x-1 (x>0)
┌ -5x+27 (x<0)
F(x)= ├ 7909 (x=0)
└ 2x-1 (x>0)

慕尼黑8549860
浏览 107回答 1
1回答

慕田峪4524236

#include <stdio.h>int main(void){int x;float y;printf("Please input x:");scanf("%d", &x);if (x < 0){y = -5 * (float)x + 27;}else if (x == 0){y = -7909;}else{y = 2 * (float)x - 1;}printf("\nF(%d)=%f", x, y);return 1;}
打开App,查看更多内容
随时随地看视频慕课网APP