Question: 3. Write a C++ program to take integer numbers from the user. Please sort all odd numbers in descending order and then sort even
3. Write a C++ program to take integer numbers from the user. Please sort all odd numbers in descending order and then sort even numbers in ascending order (25 points). Example: Input: arr[] = {0, 4, 5, 3, 7, 2, 1} Output: arr[] = {7, 5, 3, 1, 0, 2, 4)
Step by Step Solution
3.49 Rating (149 Votes )
There are 3 Steps involved in it
include iostream include vector include algorithm int main int n ... View full answer
Get step-by-step solutions from verified subject matter experts
