我编码了这个。这很好,但我可以用更少的代码编写吗?
Dim A As Integer
Dim B As Integer
Dim C As Integer
Dim D As Integer
如果您不理解我的问题,可以阅读以下示例:
我们可以编码
Dim A, B, C, D As Integer
但我们可以用更简洁的方式对其进行编码,例如
+
答案 0 :(得分:1)
我认为您正在寻找For循环:
For i As Integer = 1 To 10
ListBox3.Items.Add(i)
Next