State the output: int a = 0; a-=--a * a-- + a-- * --a; System.out.println(a);
Answers
Answered by
0
Output: -9
Explanation:
a -= --a * a-- + a-- * --a
a = a - (--a * a-- + a-- * --a)
= 0 - (-1 * -1 + -2 * -4)
= 0 - (1 + 8)
= 0 - 9
= -9
Similar questions
Math,
4 hours ago
Hindi,
4 hours ago
Physics,
4 hours ago
Math,
7 hours ago
Math,
7 hours ago
Accountancy,
8 months ago
Math,
8 months ago
Computer Science,
8 months ago