Escolha a opção adequada ao tentar compilar e rodar o arquivo a seguir:
class A {
public static void main(String[] args) {
int x = 15;
int y = x;
y++;
x++;
int z = y;
z--;
System.out.println(x + y + z);
}
}
Compreendo que :
int x = 15; // X = 15
int y = x; // Y = 15
y++;
x++;
int z = y; // Z = 15
z--;
System.out.println(x + y + z); // (15 + 15 + 15) = 45
}
}