Write a simple java program which displays a series of numbers in reverse order with a gap of 5 each.
Answers
Answered by
0
Answer:
Program to print numbers from N to 1 in reverse order
Explanation:
nput: N = 10
Output: 10 9 8 7 6 5 4 3 2 1
Input: N = 7
Output: 7 6 5 4 3 2 1
Similar questions