#java #arrays #multidimensional-array #double #names
#Ява #массивы #многомерный массив #двойной #имена
Вопрос:
Напишите программу, которая будет отображать результаты восьми игроков в игре за 4 четверти. Программа должна отображать имена и фамилии игроков, заглавные первые и первые буквы фамилии. Оценка должна быть введена пользователем, но запись может содержать только две цифры. Программа должна подсчитать общий счет игры для каждого игрока. На выходе должен отображаться весь многомерный массив
импорт java.util.Сканер; импорт java.util.Массивы;
итоговый балл публичного класса {
public static void main(String[] args) { Scanner scan = new Scanner (System.in); System.out.print("Enter the number of game players: "); // using array int numOfPlayers = scan.nextInt(); String[] names = new String[numOfPlayers]; double[] scores = new double[numOfPlayers]; // using for loop to all the names of the player String list=""; for (int i=0; ilt;names.length; i ){ list = " Quarter " (i 1) ": " scores[i] " points |||"; } //return; // asking user to enter players name System.out.print("Enter a players name for quarter 1, " ); String name; name= scan.next(); // UpperCasing the first letter of the first name String result = name.substring(0, 1).toUpperCase() name.substring(1); String lastName=scan.next(); // UpperCasing last name String result2=lastName.substring(0, 1).toUpperCase() lastName.substring(1); System.out.println(result " " result2); // print name for scores names[i] = name; // enter name score System.out.print("Enter " result " " result2 "'s score: "); System.out.println("n"); //System.out.println( "Name: t" "Q1. "); while(scan.hasNext()) { if(scan.hasNextDouble()) { double score = scan.nextDouble(); scores[numOfPlayers] = score; break; } else { System.out.println( "Name: t" "Q1. "); System.out.println("ERROR: Invalid Input"); scan.next(); } } } //System.out.println(" tQ1. " ); //System.out.println( Arrays.toString(names ) "t" Arrays.toString(scores)); // }
это то, как должен выглядеть результат, и я не могу этого понять, я новичок, сделайте это, пожалуйста, помогите мне Q1. Q2. Q3 Q4. Весь Боб Смит. 1 2 3 4 10 Сердце Аллиен 1 2 3 4 10
Комментарии:
1. Можете ли вы уточнить, что вам нужно сделать? У каждого игрока есть 4 балла? Значит, вам нужно прочитать 8 игроков с 4 баллами по каждому, сохранить их в массиве и распечатать?
Ответ №1:
Как насчет того, чтобы попробовать это? И вы можете добавить некоторые проверки самостоятельно.
public class finalScore { public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.print("Enter the number of game players: "); int numOfPlayers = scan.nextInt(); String[] names = new String[numOfPlayers]; double[][] scores = new double[numOfPlayers][4]; for (int i = 1; i lt; names.length 1; i ) { System.out.println("Enter a players name for quarter " i ": "); String name = scan.next(); String result = name.substring(0, 1).toUpperCase() name.substring(1); String lastName = scan.next(); String result2 = lastName.substring(0, 1).toUpperCase() lastName.substring(1); System.out.println(result " " result2); name = result " " result2; names[i - 1] = name; // enter scores System.out.println("Enter " names[i - 1] "'s score: "); System.out.print("Q1: "); scores[i-1][0] = scan.nextInt(); System.out.print("Q2: "); scores[i-1][1] = scan.nextInt(); System.out.print("Q3: "); scores[i-1][2] = scan.nextInt(); System.out.print("Q4: "); scores[i-1][3] = scan.nextInt(); /* System.out.print( "Name: " name "t"); System.out.print( "Q1: " scores[i-1][0] "t"); System.out.print( "Q2: " scores[i-1][1] "t"); System.out.print( "Q3: " scores[i-1][2] "t"); System.out.print( "Q4: " scores[i-1][3] "t"); System.out.println(); */ } System.out.format("ssssss%n", new String[] {"Name", "Q1", "Q2", "Q3", "Q4", "Total"}); for (int i = 0; i lt; names.length; i ) { double total = scores[i][0] scores[i][1] scores[i][2] scores[i][3]; System.out.format("ssssss%n", new String[] {names[i], String.valueOf(scores[i][0]), String.valueOf(scores[i][1]), String.valueOf(scores[i][2]), String.valueOf(scores[i][3]), String.valueOf(total) }); } } }
Комментарии:
1. Большое вам спасибо, что я смог это понять.
2. Вы можете отметить этот ответ правильным.