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

Consider the following Java code:

public class Sample {
    int count = 0;

    public static void incrementCount() {
        count++;
    }

    public static void main(String[] args) {
        incrementCount();
    }
}