Me wants to take a report on the number of rounds participated by each team and their scores in each round.
Please help me out .... I'm facing error 🥺 The report should contain number of times each team participated and their scores in each attempt. Finally, it should display all the teams with their scores and its total. How can you help them to generate the report using jagged arrays in C#. (Hint: The number of attempts taken by each team varies.) From the Main method get input from the user and call the below method to return the results and display the result. public static String GetTotalScore(int[][] array) //Method should accept a jagged array and return the result as given in the sample output. Sample Input: Enter the number of teams: 2 No.of attempts for team 1: 2 No.of attempts for team 2: 3 Enter the score for team 1: 100 120 Enter the score for team 2: 200 150 150 Sample Output: Team 1 Total Score is 220 . Team 2 Total Score is 500 https://code.sololearn.com/cEFbOreOhW1w/?ref=app