Exercise 13 - due at 11:59:00 PM EDT on 10/17/2021 All 3 problems can be solved in the same program 1. Write a program to read in 10 numbers from the user. Store them in an array. Find the sums of the odd and even numbers. Sample Run: Enter the numbers: 1 23 90 -3 6 -130 82 0 -54 19 Odd number sum: 40 Even Number sum: -6 2. Write a C++ function that accepts an array of integers and its sze as parameters and returns the count of odd numbers in the array. Sample Run: Assume the array is 1 3 19 24 32 0 21 -7 16 8 The count of odd numbers is : 5 3. Write a C++ function to accept an array of doubles and its size as parameters and return the number of negative numbers in the array. Sample Run: Assume the array is 5 16 -7 21 19 -567 47 0 -456 -12 9 -8 The count of negative numbers is : 5