Output Look Something Like Import Javautil Public Class Mathproblems Public Static Double Q37079296

Output should look something like this:
Part 1- Mean, Median, Mode Mean = 104.74 Median78.0 Mode = 15 Part 2 Power 213 = 8 3A29 5-6 = 15625 2^0 = 1 015 = 0 Part 3 Ge

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

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.