Private Sub Command2_Click() a = Val(Text1.Text) b = Val(Text3.Text) Select Case Text2.Text Case "+" c = a + b: Text5.Text = Str$(c) Case "-" c = a - b: Text5.Text = Str$(c) Case "*" c = a * b: Text5.Text = Str$(c) Case "/" c = a / b: Text5.Text = Str$(c) Case Else Print "运算符错!": Text5.Text = "" End Select End Sub 我很想知道VB中Str$(c)代表的是什么意思.还有,运算符错为什么不能显示在text5内啊?希望高手教教我..初学,很多东西不懂.
SMILET
白衣非少年
慕桂英546537