I am reading these values from a file
12.1
13.4
12.4find
gg
16.77
56.55
My program should display the average of 5 float no and ignore find and gg.
I did
while((inputfile >> f))
{
istringstream iss(f);
if(!(iss(f))
{
iss.clear();
continue;
}
sum += f;
count ++;
cout << fixed << f << endl;
It is not giving the right result.