vb算术表达式可以直接使用加(+)减(-)乘(*)除(/)的。比如:Private Sub Command1_Click()x = 1 + 20 / 2 * 3 - 5 Print x End Sub输出结果是 26