diff --git a/Program.cs b/Program.cs index 3248b34..688e210 100644 --- a/Program.cs +++ b/Program.cs @@ -39,4 +39,16 @@ class Program { } + + static void StampaArray(int[] p_array) { + for (int i = 0; i < p_array.Length; i++) { + Console.WriteLine($"Elemento {i}: {p_array[i]}"); + } + } + + static void Pausa() { + Console.WriteLine("Premere un tasto per continuare. . ."); + Console.ReadKey(); + Console.Clear(); + } }