Write a program using array that asks user to input 10 numbers, then calculates the average of those numbers and finds out the total number that is greater or equal to the average. For example, the user inputs following ten numbers: 1,2 3,4,5, -1, -3,-5,0,4. The sum will be 10, the average is 1. The total number that is greater or equal to 1 is 6 (they are 1,2,3,4,5,4). You have to use the loop structure for this problem.
It is very important that this is in C++ compiler used is DevC++.