I am getting the invalid assignment error when trying to parse two strings and them perform mathematical operations on them :S
the error is in this line,
IfirstValue+IfirstValue;
Here is the complete code,
firstValue = 34;
secondValue = 10;
IfirstValue = Integer.parseInt(firstValue);
IsecondValue = Integer.parseInt(secondValue);
if (operator == 3){
IfirstValue+IfirstValue;
}
I tried replacing '+' by '-' , '/' , '*' but the error remains same :S
(operator is input from the user)
please explain why it is happening.
IfirstValue. Formatting your code would be helpful, too. – Jon Skeet Feb 10 '12 at 19:53