الرجوع
تسجيل الدخول
أنت تتصفح نسخة مؤرشفة من الموقع اضغط للانتقال إلى الموقع الجديد بكامل المزايا

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);
    }
}