5bc
it evaluates left-to-right, so 2+3 is done first.
What does this statement print?
system.out.printIn(2 + 3 + "bc");
2 answers
it evaluates left-to-right, so 2+3 is done first.
system.out.printIn(2 + 3 + "bc");
2 answers