11-20-2024, 03:21 PM
Aren't you guys making this all too complicated for such a simple task and question?
Three simple lines of code. That's all you need. Nothing fancy. Nothing complex. Just a FOR statement, a PRINT statement, and a NEXT.
Code: (Select All)
For i = 0 To 20
Print Space$(40 - i); String$(i * 2 + 1, "*")
Next
Three simple lines of code. That's all you need. Nothing fancy. Nothing complex. Just a FOR statement, a PRINT statement, and a NEXT.