fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. int a = 5;
  6. int b = a++;
  7. int c = ++a;
  8. System.out.println(a+" "+b+" "+c);
  9. }
  10. }
Success #stdin #stdout 0.17s 57908KB
stdin
Standard input is empty
stdout
7 5 7