Computer Science, asked by arauniyar187, 4 months ago

Write a program to generate the following numeric
the pattern in QBasic using a nested loop:
1
33
555
7777
99999

Answers

Answered by sandeepbubby3
0

Answer:

101010101

hope its helpful u


arauniyar187: CLS
FOR j = 1 TO 9 STEP 2
FOR k = 1 TO j STEP 2
PRINT j;
NEXT k
PRINT
NEXT j
END
sandeepbubby3: what is this???
Similar questions