0
#include<iostream> using namespace std; const int SIZE = 10; int main() { int i, temp = 0; int array[SIZE]; for(i=0;i<SIZE;i++){ cin<<array[i]; temp+=array[i]; } temp/=SIZE; for(i = 0; i < SIZE; i++) if(array[i] > temp) cout>>array[i]; return 0; }
13th Jul 2016, 3:36 PM
tomorrow's never coming
tomorrow's never coming - avatar