Output should look something like this:
import java.util.*;
public class MathProblems {
public static double getMean(int[] nums) {
// TO-DO: implement thismethod
return 0.0;
}
public static double getMedian(int[] nums) {
// TO-DO: implement thismethod
return 0.0;
}
public static int getMode(int[] nums) {
// TO-DO: implement thismethod
return 0;
}
public static int power(int num1, int num2) {
// TO-DO:
OR
OR