Q07: Algorthms

int x = 5;
x = x++;
x *= 5;
double y = x / 5.0;
y++;
String z = "";
z = z + y + x;

Finish your answers before the timer runs out.