Does the following Java statement have an error in it? If so, what is it?
P *= x/y
|
|
|||||||||||||
|
|
|
If you're looking for "logical errors" and if the types are all integers, it's probably better to do:
Because the current expression (IIRC) is equivalent to:
The latter expression may be less "accurate" if the types are integers. For example:
However,
So you need to be careful. In general division on integer expressions should be done as the final step. |
||||||
|
|
|
If Also, since it translates to |
||
|
|
|
|
Looks perfectly fine apart from the aforementioned lack of a semicolon, and possible problems with type. That statement just divides x by y, multiplies that result by p, and places that value into p. |
||
|
|
|
|
It lacks a semicolon If there's more errors, it depends on the types of P,x and y. They have to be number types |
||||
|