الرجوع
تسجيل الدخول

What is the returning data type of the following method?

public static void display(String name, int age) { 
  System.out.println("Name: " + name); 
  System.out.println("Age: " + age); 
}