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

What is the output?

public class Test {
    public void display() {
        System.out.println("Displaying...");
    }

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