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

What is the output of the program?

public class Utility {
    static int doubleValue(int value) {
        return value * 2;
    }

    public static void main(String[] args) {
        int result = Utility.doubleValue(5);
        System.out.println(result);
    }
}