Oct 22, 2012 at 9:09pm UTC
expected unqualified-id before â{â token
expected constructor, destructor, or type conversion before â==â token
expected initializer before numeric constant
...
score_3 = sqrt (4 * 2.71 *(square_3 - square_3)^2) / 4 - 1
score_4 = sqrt (4 * 2.71 *(square_4 - square_4)^2) / 4 - 1
}
mean == (score_1 + score_2 + score_3 + score_4)/4 - 1;
{
square_1 =(score_1 - mean)
square_1 = pow(score_1 - mean - 2);
}
...
The code has the first two errors, i dont remember where i got the third error from
Last edited on Oct 22, 2012 at 9:20pm UTC
Oct 22, 2012 at 9:11pm UTC
Can you post the lines of code that are giving these errors? (please include a few lines before it, as well, as a mistake on a previous line can cause errors on future lines)