You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pr91114.aj 218B

12345678910
  1. public class pr91114 {
  2. public void bar() {
  3. long before = 0;
  4. long after = 0;
  5. long x = (before - after); // doesn't fail without the parentheses!
  6. System.out.println("... " + (before - after) + " ...");
  7. }
  8. }