Advertisement
Guest User

Untitled

a guest
Oct 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1.  
  2. package out;
  3.  
  4.  
  5. public class Test {
  6. public static void main(String[] args) {
  7. int a=1;
  8. int b=2;
  9. int c;
  10. int d;
  11. c=++b;
  12. d=a++;
  13. c++;
  14. System.out.println("a= "+a);
  15. System.out.println("b= "+b);
  16. System.out.println("c= "+c);
  17. System.out.println("d= "+d);
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement