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

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

System.out.println(b);