Informatică, întrebare adresată de andreistancu96, 8 ani în urmă

Salut ! Ma puteti ajuta si pe mine va rog la acesta problema ? lucrez la sololearn c# si am intampinat aceasta problema :
Follow multidimensional array that is given:
int[,] num = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };

Complete the program to output this array in the form of a table (without separation):
123
456
789

Anexe:

Răspunsuri la întrebare

Răspuns de VxF
2

Răspuns:

using System;

using System.Collections.Generic;

using System.Diagnostics;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace SoloLearn

{

   class Program

   {

       static void Main(string[] args)

       {

           int[,] num = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };

           //your code goes here

           for (int i = 0; i < num.GetLength(0); i++) {

               for (int j = 0; j < num.GetLength(1); j++) {

                   Console.Write(num[i, j]);

               }

               Console.WriteLine();

           }

       }

   }

}

Explicație:

Alte întrebări interesante