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

What is the output after executing the following code? 

int y = 5;
double x = 2;
y *= x;
System.out.println(y);

y--;
y /= 2;
System.out.println(y);