Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Print 2D Array
//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) { // Print 2D Array int [,] intMatrix = new int [3,5] {{1,2,3,4,5}, // הגדרת המערך {6,7,8,9,0}, {1,0,1,0,1}}; for( int row=0; row<intMatrix.GetLength(0); row++) // לולאה חיצונית לסריקת השורות { for( int col=0; col<intMatrix.GetLength(1); col++) // לולאה פנימית לסריקת התאים של השורה הנוכחית { Console.Write(intMatrix[row,col]+ " "); // הדפסת התא הנוכחי עם רווח } Console.WriteLine(" "); // קפיצת שורה בהדפסה לשורה הבאה של המערך } //-------------------------------------------------------------------- } } }
run
|
edit
|
history
|
help
0
kjk
Reflection constructors
Celsius to Kelvin / Kelvin to Celsius
Intuit // C# // listing_4.2 (Converting / Parsing)
Just tries to add/remove items to the list
Distinct of the given array
dynamic in C#
Delegate Example
C# programming exercise 2
Octavia