Write a program in QB64 to print your name 10 times using FOR... NEXT loop.
Answers
Answered by
8
Answer:
CLS
INPUT "Enter your name"; A
FOR A = 1 TO 10
PRINT A
NEXT A
END
Hope this helps you.
Mark this answer as brainliest if it did
Answered by
1
Answer:
we can take an example of a name "Raja Das".
You can take another example.
CLS
REM NAME
FOR X =1 TO 10
PRINT "RAJA DAS"
NEXT X
END
Explanation:
This will help us to print your name 10 times.
Similar questions