它程序开头是 DIM n as Integer,I as Integer
还一样的吗?
这样的话就改为:
Private Sub Form_Click()
Dim n As Integer, i As Integer
For i = 1 To 10
n = InputBox("请输入第" & i & "个数:")
If n Mod 3 = 0 Then Print n
Next i
End Sub
这样就行了。
求答案啊!怎么写那个程序设计 什么DIM PRIVATE 什么的。。。SUB
那个怎么写呢 求帮忙
不写sub,直接在click里面写也可以啊。我这里没装VB
追问我的意思 就是那个代码怎么写?这是写试卷上的
就是答案 怎么写呢,不是电脑上VB。
Private Sub Command1_Click()
Dim a As String
Dim num As Integer
For i = 1 To 10
a = InputBox("input")
num = CInt(a)
If num Mod 3 = 0 Then Print num
Next i
End Sub