Computer Science, asked by biswasyashika, 5 months ago

2. Write Program to display table of 5 ( as 5 X 1=5........ 5 X 10=50 ) using while statement:​

Answers

Answered by BrainlyProgrammer
2

Answer:

This is done in qbasic

CLS

I=1

WHILE I<10

PRINT 5*I

I=I+1

WEND

END

Similar questions