(x+y÷z)2的vb算术表达式 Private Sub Form_Load()x=1y=2z=2MsgBox(x+y/z)*2End Sub
a与b之积除以c的余数,用vb的表达方式 a*b mod c
求帮做VB程序 1.Private Sub Command1_Click()a=InputBox(\"\")For i=1 To aIf a Mod i=0 Then Print iNextEnd Sub 2.Private Sub Command1_Click()For i=1 To 100temp=i^2If i=Val(Right(temp,Len(i)))Then Print.