n/a
n/a
Rate n/a
(2(2 Vote))
Dim intLines, intStars As Integer
Dim strFileName As String = "a:\pattern.txt"
objStreamOut = System.IO.File.CreateText(strFileName)
For intLines = 1 To 10
For intStars = 1 To intLines
objStreamOut.Write("*")
Next intStars
objStreamOut.WriteLine()
Next
objStreamOut.Close()
n/a Comments
No comments yet — be the first to post one!
Post a Comment