Write a program to generate the following numeric
the pattern in QBasic using a nested loop:
1
33
555
7777
99999
Answers
Answered by
0
Answer:
101010101
hope its helpful u
Similar questions
FOR j = 1 TO 9 STEP 2
FOR k = 1 TO j STEP 2
PRINT j;
NEXT k
PRINT
NEXT j
END