Computer Science, asked by sahilkhatake, 2 months ago

write Qbasic program to print the table of 10 in bothe ascending and descending order​

Answers

Answered by mail2rheaagr
0

Answer:

CLS

DIM N(10)

FOR I = 1 TO 10

INPUT "ENTER THE NUMBERS"; N(I)

NEXT I

FOR I = 1 TO 10

FOR J = 1 TO 10 - I

IF N(J) > N(J + 1) THEN SWAP N(J), N(J + 1)

NEXT J

NEXT I

PRINT "NUMBERS ARRANGED IN ASCENDING ORDER"

FOR I = 1 TO 10

PRINT N(I)

NEXT I

Similar questions