')' expected

One or more closing parentheses are needed here. Carefully count the number of opening and closing parentheses in the expression and insert a closing parenthesis where needed. The number of closing parentheses must match the number of opening parentheses. Example:

x = 3 * (2 + 3 / (8 - x)

Two solutions are possible here, with a different meaning:

x = 3 * (2 + 3) / (8 - x)
x = 3 * (2 + 3 / (8 - x))

See Also
Errors