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

What is the output of the following code?

public class MainClass {
    public static int myMethod() {
        System.out.println("Inside myMethod");
    }

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