online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
using System; public class Program { static string Afficher(int[,] m) { string lignePleine = new string('-', m.GetLength(1) * 6 + 1); var result = ""; for (int ligne = 0; ligne < m.GetLength(0); ++ligne) { result = string.Concat(result, lignePleine + "\n" + "|"); for (int colonne = 0; colonne < m.GetLength(1); ++colonne) { result = string.Concat(result, $"{m[ligne, colonne],3} |"); } result = string.Concat(result, "\n"); } result = string.Concat(result, lignePleine + '\n'); return result; } public static void Main(string[] args) { int[,] matrice = new int[5, 5]; Console.WriteLine(Afficher(matrice)); } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue