int result = 0.00067*(value[i]*value[i])+0.5*value[i]-33;
value[ i ] is an int. When you multiply that by value[ i ], the result is an int. For most of the values in the array, the result is not a valid int value.
int result = 0.00067*(value[i]*value[i])+0.5*value[i]-33;
value[ i ] is an int. When you multiply that by value[ i ], the result is an int. For most of the values in the array, the result is not a valid int value.