Program DebuggingRead, understand, and answer the problems stated in the attached file. Debug the program in order for it to run as stated in its specification (Note: No adding of lines of code, no need to write comments). Underline the entire line that contains the bug. There should be 2 files to be uploaded. Consider and understand the scenario that follows. Debug the program in order for it to run as stated in its specification (Note: No adding of lines of code, no need to write comments). Underline the entire line that contains the bug. There should be 2 files to be uploaded.
The program in the next page, when ran, will let the user roll a pair of dicen-times (i.e. generate a number between 1 and 6), where n is a positive integer entered by a user. The program then outputs the pair of numbers rolled by the dice, as well as the sum of the numbers rolled by each pair of dice. The pairs of numbers are stored in a 2-dimensional array, and the sum of each pair is stored in a single-dimensional array.
import java.util.Scanner;//import java.util.Random;public class FinalExam3{public static void main (String() args) {Scanner input = Scanner(System.in);System.out.print("Enter the amount of times a pair of dice will roll: ");int times = keyboard.nextInt();int[] dicePairs = rollDicePairs(times);System.out.println("The rolled pairs of numbers are:");printDicePairs(dicePairs);System.out.println("The sum of each pairs of numbers are:");int[][] dicePairsSums = addDicePairs(dicePairs);printDicePairsSums(dicePairsSums);}public static double[][] rollDicePairs(int times){int[][] dice = new int[times][2];Random die = new Random();for(int x=0; x<>for(int y=0; y<2;>2;>dice[x][y] = 1+die.nextInt(6);}}return dice;}public static void printDicePairs(int[][] dicePairs){for(int[] pair: dicePairs){for(int roll: pair){System.out.print(roll+" ");}System.out.println("");}}public static int[][] addDicePairs(){int[] pairSums = new int[dicePairs.length];for(int x=0; xint sum = 0;for(int y=0; ysum+= dicePairs[x][y];}pairSums[y] = sum;}return pairSums;}public static String printDicePairsSum(int[] dicePairsSums){for(int sum: dicePairsSums){System.out.print(dicePairsSums +" ");}}}
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here