Hi everyone
I am trying to code a program using loops that prints triangles.
for instance:
*
**
***
****
*****
then the other way
*****
****
***
**
*
My problem is I am using For---Next, but I am not sure how to start my counter.
I had for example
for i=1 to 1< 5 ( which is my counter)
for j=1 to j< i
next
next
I am trying to get it where the outer loop print the lines and the innner loop print the number of stars on each line separately.
any information on how I can do this will be much appeciated
thanks
computer_mom :confused: