static void Main(string[] args)
int[]dane= { 64, 34, 25, 12, 22, 11, 90 };
int[] daneBabelkowe=(int[])dane.Clone();
Stopwatch stopwatch=Stopwatch.StartNew();
SortowanieBabelkowe(daneBabelkowe);
Console.WriteLine($"Czas sortowania bąbelkowego: {stopwatch.ElapsedMiliseconds}ms");