セクション 5. 章 4
single
Challenge: Multi-Dimensional Arrays
メニューを表示するにはスワイプしてください
タスク
スワイプしてコーディングを開始
A classroom has several rows of students, and each student has a score. You need to calculate the total score for each row using a method that accepts a 2D array.
- Use
array.GetLength(0)to get the number of rows. - Use
array.GetLength(1)to get the number of columns. - Initialize a variable
rowTotal = 0for each row before summing. - Use
rowTotal += scores[row, col]to add each student's score. - Print the row total using
Console.WriteLine.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 5. 章 4
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください