Site icon Pathshala Nepal

Write a program to input a name and print it 10 times using do while loop.

Qbasic
Online Calculator

Write a program to input a name and print it 10 times using do while loop.


1 Answer


CLS

INPUT"ENTER YOUR NAME";NA$

C = 1

DO WHILE C <= 10

PRINT NA$

C = C + 1

LOOP

END

Topics from Computer
Related Questions