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

Given the following code, what is the output?

int a = 1;
int b = 2;
int c = a++;
int d = --b;
System.out.println(a + " " + b + " " + c);