您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }