Programming Examples
Java program to input 10 integers and check whether the entered numbers are in ascending order or not
Write a program to input 10 integers and check whether the entered numbers are in ascending order or not.
For Example,
INPUT: Enter 10 numbers: 10 12 13 25 45 55 67 78 106 122
OUTPUT: The numbers are in ascending order.
INPUT: Enter 10 numbers: 25 34 56 67 12 32 43 21 23 111
OUTPUT: The numbers are not in ascending order.
Solution
Output