vb编程,这个代码怎么写的

2024年11月19日 18:20
有1个网友回答
网友(1):

Private Sub Command1_Click()
Dim x As Single, y As Single
x = Val(InputBox(""))
If x <> 0 Then
 y = Sin(x) + Sqr(x ^ 3 + 1)
Else
 y = Cos(x) - x ^ 2 + 3 * x
End If
MsgBox y

End Sub