fork download
  1. import java.util.*;
  2.  
  3. class Demo
  4. {
  5. public static void main(String args[])
  6. {
  7. int a=5;
  8. int b;
  9. b=a++;
  10. System.out.println(a);
  11. System.out.println(b);
  12. }
  13. }
Success #stdin #stdout 0.06s 32472KB
stdin
Standard input is empty
stdout
6
5