weew
Last edited on
Also keep in mind that the variable to which you assign must be on the left side of expression.
You code:
xValue * yValue==result;
Should be rewritten such that result is on the left side:
result = xValue * yValue;
silver20, DON'T EDIT YOUR POST to remove your question. That is rude and trollish.