Ok my question states-
Request an odd number, and display a triangle similar to the one in figure 6. , with the input number of starts in the top row.
-So basically we ask the user for an odd number and take their input and make a triangle descending to zero.
Figure 6.
********
*******
******
*****
****
***
**
*
My code:
Dim i As Integer
Dim num As String = txtout.text
For i = 1
txtout.AppendText("*")
Next i
txtout.AppendText(ControlChars.NewLine)
For i = 1
txtout.AppendText("*")
Next i
txtout.AppendText(ControlChars.NewLine)
---Im stuck from here, any help is appreciated.


