Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Sum Matrix Column
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { int [,] intMatrix = new int [3,3] {{1,2,3}, // הגדרת המערך {4,5,6}, {7,8,9}}; int sum=0; for( int col=0; col<intMatrix.GetLength(0); col++) // לולאה חיצונית לסריקת השורות { sum=0; for( int row=0; row<intMatrix.GetLength(1); row++) // לולאה פנימית לסריקת התאים של השורה הנוכחית { sum +=intMatrix[row,col]; // חישוב סכום } Console.WriteLine(sum); // הדפסה } } } }
run
|
edit
|
history
|
help
0
Dependency Injection
abebe
DASX
examen res
Reference vs Value types (aka Classes vs Structs) in C#
Ejercicio 1 clase 8 feb
jdiwnnx cf
simult 3x3
Unexpected result of virtual method
nikk