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. 

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

1 Expert Approved Answer
Step: 1 Unlock

include iostream include vector include algorithm int main int n ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!