请你给我一个关于如何解决我当前问题的指导线。我不确定如何将其付诸实践。
我有一个计数器,在 for 语句中加一我想添加一个需要执行以下操作的 if 语句:
Dim count as decimal = 1
For i As Integer = 1 To 400 - 1
If count = 3 or count = 6 or count = 9 or count = 12 ..and on and on
'All the numbers that mathes the count
Else
'All the numbers that does not match
End if
count += 1
Next
我想要一个关于如何编写 If count = 3 或 count = 6 等的更简单的方法