Computer Science, asked by ravigamerz067, 1 month ago

(v) Write a program to print the message "Computer World 10
times (Using While Wend).​

Answers

Answered by BrainlyProgrammer
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