fork download
  1. class Output {
  2. public static void main(String args[])
  3. {
  4. int a = 1;
  5. int b = 2;
  6. int c;
  7. int d;
  8. c = ++b;
  9. d = a++;
  10. System.out.println(d);
  11. c++;
  12. b++;
  13. ++a;
  14. System.out.println(a + " " + b + " " + c);
  15. }
  16. }
Success #stdin #stdout 0.04s 4386816KB
stdin
Standard input is empty
stdout
1
3 4 4