Computer Science, asked by tejajay2006, 1 year ago

write a program to accept the name of your school and print it 15 times on the screen using the do while loop {qbasic}

Answers

Answered by BrainlyHeart751
11

Here you go:

CLS

REM TO ACEEPT A NAME AND PRINT IT 5 TIMES

INPUT "Enter Your name : ";NAME$

FOR I = 1 TO 5 STEP 1

PRINT NAME$;" " 'SPACE ADDED TO PREVENT CONFUSION

NEXT I

END

Hope it helps u mark as brainliest please

Answered by Sushant05
7
HOLA MATE !
CLS

REM TO ACEEPT A NAME AND PRINT IT 5 TIMES

INPUT "Enter Your name : ";NAME$

FOR I = 1 TO 5 STEP 1

PRINT NAME$;" "

'SPACE ADDED TO PREVENT CONFUSION

NEXT I END

HOPE IT HELPS YOU!

MARK IT AS THE BRAINLIEST!
Similar questions