import java.util.Scanner; /** * This class creates and rolls a die a specified number of times and * then reports statistics on the face values rolled. */ public class DieStats { /** * Finds the minimum value in an array of integers * @param values An array of integers * @return The minimum value in the array */ private static int min(int[] values) { // FILL IN } /** * Finds the maximum value in an array of integers * @param values An array of integers * @return The maximum value in the array */ private static int max(int[] values) { // FILL IN } /** * Computes the average face value * @param values An array of integers * @double The average face value */ private static double averageValue(int[] values) { // FILL IN } /** * Prints an array of integer values to the screen * @param values The array to be printed */ private static void printArray(int[] values) { // FILL IN } /** * Swaps the minimum value in the array with the last value * @param values An array of integers */ private static void swapMinToEnd(int[] values) { // FILL IN } public static void main(String[] args) { // fILL IN } }