VB 在线等 用if语句和select case语句完成

2024-11-26 04:51:51
推荐回答(1个)
回答1:

Private Sub Command1_Click()
If x >= 0 Then
y = x * Cos(x)
Else
y = -x
End If
End Sub