编写程序,计算下列分段函数的值.x (x>=0) y= -x (x
问题描述:
编写程序,计算下列分段函数的值.x (x>=0) y= -x (x
答
if x>=0 then y=x
else
y=-x
end if
print y