当 x<1时,函数 y=x-1 当1<=x<10时,函数y=2(x-1) 当x>=10时,函数y=3x-10 编程当分别输入x值为0,3,3.9,11

y的值
2024-12-31 07:29:05
推荐回答(2个)
回答1:

input x
if x<1 then y=x-1
else
if 1<=x<10 then y=2(x-1)
else
y=3x-10
end if
end if
print y
end

回答2:

用Java还是别的!!