05 cls
10 input "Enter your terms......";n
20 for i=1 to n step 1
30 for j=1 to i
40 print "*"
50 next j
60 next i
70 end
--------------------------OUT PUT ---------------------------
Enter Your terms...........4
*
**
***
****
10 input "Enter your terms......";n
20 for i=1 to n step 1
30 for j=1 to i
40 print "*"
50 next j
60 next i
70 end
--------------------------OUT PUT ---------------------------
Enter Your terms...........4
*
**
***
****
Comments
Post a Comment