编写一个程序,对于函数y=x(x<1),y=2x-1(1≤x<10),y=3x-11(x≥10),输入x的值,输出相应的函数值.
图示
编写一个程序,对于函数y=x(x<1),y=2x-1(1≤x<10),y=3x-11(x≥10),输入x的值,输出相应的函数值.
图示
public int func(int x){
if(x<1) return x;
else if(x>=1 && x<10) return 2*x-1;
else return 3*x-11;
}
private sub command1_click()
dim x,y
x=inputbox("请输入x的值:","输入")
if x<1 then
y=x
else
if x<10 then
y=2*x-1
else
y=3*x-11
end if
end if
end sub