I have the following example code:
int pay = 80; int bonus = 65; System.out.println(pay + bonus + \" \" + bonus + pay);
could someone please ex
bonus and pay are both ints, and therefore going to be combined into a single int result.
bonus
pay
You need to insert an empty string between them.