Advertisement
IvanOseledko

Homework25

Dec 23rd, 2023
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.27 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Homework25
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             int[] array = new int[10];
  10.             int lowerBoundRandom = -100;
  11.             int upperBoundRandom = 101;
  12.             int temp;
  13.             Random random = new Random();
  14.  
  15.             Console.WriteLine("Исходный массив: ");
  16.            
  17.             for (int i = 0; i < array.Length; i++)
  18.             {
  19.                 array[i] = random.Next(lowerBoundRandom, upperBoundRandom);
  20.                 Console.Write(array[i] + " ");
  21.             }
  22.  
  23.             for (int i = 0; i < array.Length; i++)               //Пузырьковая сортировка
  24.             {
  25.                 for (int j = 0; j < array.Length - 1 - i; j++)
  26.                 {
  27.                     if (array[j] > array[j + 1])
  28.                     {
  29.                         temp = array[j];
  30.                         array[j] = array[j + 1];
  31.                         array[j + 1] = temp;
  32.                     }
  33.                 }
  34.             }
  35.  
  36.             Console.WriteLine("\n\nОтсортированный массив: ");
  37.  
  38.             for (int i = 0; i < array.Length; i++)
  39.             {
  40.                 Console.Write(array[i] + " ");
  41.             }
  42.         }
  43.     }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement