Răspuns :
#include<iostream>
#include<fstream>
using namespace std;
ifstream fin("nunere.txt");
int x, k, s;
int main()
{
k = 0; /*aici se retine numarul de numere pozitive citite*/
s = 0; /*aici se calculeaza suma numerelor pozitive*/
while (fin >> x) if (x > 0) {k++; s=s+x;}
if (k == 0) cout << "NU EXISTA";
else cout << (float) s/k; /*s/k este media artimetica a nr pozitive*/
return 0;
}