write a program to print and display 5 numbers in an array in qbasic
Answers
Answered by
1
Answer:
Greatest among 5 numbers using Array. CLS. DIM num(4) PRINT "Enter any any 5 numbers" FOR j = 0 TO 4. ...
Input Name and Marks and Display using Array. CLS. DIM n$(5) DIM m(5) PRINT "Enter Name and Marks of any 5 students" ...
Display Name and Roll using READ DATA. DIM n$(6), roll(6) CLS. FOR i = 0 TO 6. READ n$(i), roll(i)
Explanation:
I hope this answer helpful to you
Similar questions