(v) Write a program to print the message "Computer World 10
times (Using While Wend).
Answers
Answered by
4
Answer:
CLS
I= 1
WHILE I<=10
PRINT "Computer World"
I=I+1
WEND
END
Logic:-
- Initialise I= 1
- Run a while loop with condition I<=10
- print the line "Computer World"
- Inccrease the value of I by 1
- Close the while loop
- Close the program
Similar questions
Computer Science,
24 days ago
Science,
1 month ago
Math,
8 months ago
Math,
8 months ago
Math,
8 months ago