✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quelle est la sortie de ce programme?
What is the output of this program?
class Main{ public static void main(String args[]) { int x = 3; if (x == 3) { int x = 4; System.out.println(x); } }}