Take integer numbers into array and print in reversed order
Code:
AUTO
10 FOR I=1TO10 STEP 1
20 INPUT "ENTER NUMBER:",NUM[I]
30 NEXT I
40 PRINT "REVERSED ORDER"
50 FOR J=10 TO 1
60 PRINT NUM[J]
70 NEXT J
80 END
RUN
In This Blog I share Information About Different Topics or Courses of Computer Science like C++, C programming, Ms.office,html e.t.c And Some Important Information Of Computer Science.
Comments
Post a Comment