Question
What is the missing keyword in the program below? public class Batman { public static int minFunction(int n1, int n2) { int min; if (n1
What is the missing keyword in the program below?
public class Batman {
public static int minFunction(int n1, int n2) {
int min;
if (n1 > n2)
min = n2;
else
min = n1;
return min; //This is the value that will be returned from the minFunction method.
//The value after the keyword return must match the return type from the method header. Ours is OK because they are both int.
} // end the public method named minFunction
} // end the public class of Batman
public class MyClass {
public static void main(String args[]) {
Batman Bruce = ___ Batman();{ <------ missing keyword?
int BatmanRounds = Batman.minFunction(3,4); {
System.out.println(BatmanRounds);
}//end the minFunction
}//end the Bruce Batman object
}//end main method
}// end of MyClass class
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started