Question
(C++) Write a program that takes a list of integers as input. The input begins with an integer indicating the number of integers that follow.
(C++) Write a program that takes a list of integers as input. The input begins with an integer indicating the number of integers that follow. You can safely assume that the number of integers entered is always less than or equal to 10. The program then determines whether these integers are sorted in the ascending order (i.e from the smallest to largest). If these integers are sorted in the ascending order, the program will output Sorted; Otherwise, it will output Unsorted.
You MUST define and call the following function to determine whether the integers are sorted in the ascending order or not. This function will take the array of the integers and it's size as input and return a boolean value with true indicating sorted and false for unsorted.
bool isSorted(int array[], int size);
Ex: if the user enters: 7 1 3 4 2 4 57 the program will output: Unsorted If the user enters: 7 1 2 4 5 7 9 10 the program will output: sorted You MUST define and call the following functic will take the array of the integers and its size a bool isSorted (int array[], int size)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started