Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Impara Challenge: Multi-Dimensional Arrays | Array
Fondamenti di C#

book Challenge: Multi-Dimensional Arrays

Compito

Swipe to start coding

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 = 0 for each row before summing.
  • Use rowTotal += scores[row, col] to add each student's score.
  • Print the row total using Console.WriteLine.

Soluzione

Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 5. Capitolo 4
single

single

Chieda ad AI

expand

Chieda ad AI

ChatGPT

Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione

close

book Challenge: Multi-Dimensional Arrays

Scorri per mostrare il menu

Compito

Swipe to start coding

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 = 0 for each row before summing.
  • Use rowTotal += scores[row, col] to add each student's score.
  • Print the row total using Console.WriteLine.

Soluzione

Switch to desktopCambia al desktop per esercitarti nel mondo realeContinua da dove ti trovi utilizzando una delle opzioni seguenti
Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 5. Capitolo 4
single

single

some-alt