I was given a formula in this format
Data = [ (percentage / 15) – (var1 + var2) / 20] * [ var3 + var4];
If I put the above statement in, it will compile with
sample.cpp:131:1: error: stray ‘\342’ in program
sample.cpp:131:1: error: stray ‘\200’ in program
sample.cpp:131:1: error: stray ‘\223’ in program
sample.cpp:131:81: error: ‘(percentage/ 15)’ cannot be used as a function
How do I change the data statement to make the formula work in C++?