static void Main(string[] args)
int[] array = { 100, 12, 33, 157, 96, 54 };
for(int y = 0; y <= array.Length - 2; y++)
Console.WriteLine("<--- 1. for Schleife");
Console.WriteLine($"y = {y}");
for(int x = 0; x <= array.Length - 2; x++)
Console.WriteLine("<--- 2. for Schleife");
Console.WriteLine($"x = {x}");
if(array[x] > array[x + 1])
Console.WriteLine("<--- 3. if Condition");
Console.WriteLine($"x = {x}");
Console.Write("Sorted: ");
Console.Write($"{i} | ");
Console.WriteLine($"\nArray Length = {array.Length}");