please help friends.... how to print this series
Attachments:
Answers
Answered by
2
qbasic
10 rem to print a pattern
20 for I =1 to 4 step 1
30 for j=1 to I
40 print "a";
50 next j
60 print
70 next I
80 end.
hope it helps.
10 rem to print a pattern
20 for I =1 to 4 step 1
30 for j=1 to I
40 print "a";
50 next j
60 print
70 next I
80 end.
hope it helps.
bijitasethy:
oh.
Similar questions