QUESTION 3 30 points Save Answer Complete the following program that uses arrays of 10 integers: • Read the contents of
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
QUESTION 3 30 points Save Answer Complete the following program that uses arrays of 10 integers: • Read the contents of
QUESTION 3 30 points Save Answer Complete the following program that uses arrays of 10 integers: • Read the contents of the array from the user. • Print the average of the array elements • Print the smallest element of the array • Print the odd numbers of the array. #include <iostream> using namespace std; int main() { int n[10]; return 0; } For the toolbar, press ALT+F10 (PC) or ALT+FN+F10 (Mac).