الرجوع
تسجيل الدخول

int a = 5;
int b = --a + a++  + a;
System.out.println(a);

 System.out.println(b)