Computer Science, asked by sidpower260, 1 day ago

WRITE A PROGRAM TO MINIMUM OF 10 INPUT NUMBER IN QBASIC USING WHILE LOOP.

Answers

Answered by iamsoumyarn
1

I will write this program using Do until loop

Program---- To pring number 1to 10

CLS

count = 1

DO UNTIL count > 10

PRINT count

count = count + 1

LOOP

Output-

1

2

3

4

5

6

7

8

9

10

Please mark as the brainliest please

Similar questions