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

what is the output of the following code?

public class Test {
    static int x = 20;
    public static void main(String[] args) {
        int x = 10;
        System.out.println(x);
    }
}