2016 Update
This commit is contained in:
parent
948b86eafa
commit
dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions
11
Task/Loops-For/VBA/loops-for.vba
Normal file
11
Task/Loops-For/VBA/loops-for.vba
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Option Explicit
|
||||
Sub LoopEx()
|
||||
Dim i As Long, j As Long, s As String
|
||||
For i = 1 To 5
|
||||
s = ""
|
||||
For j = 1 To i
|
||||
s = s + "*"
|
||||
Next
|
||||
Debug.Print s
|
||||
Next
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue