現在の問題を解決する方法を教えてください。これを実践する方法がわかりません。
forステートメントで1ずつ増加するカウンターがあります。次のことを行う必要がある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 などを記述する方法について、より単純な方法が必要です。