Advertisement
VodVas

Сортировка чисел

Aug 31st, 2023
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.01 KB | Software | 0 0
  1. namespace Сортировка_чисел
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             int[] array = new int[20];
  8.  
  9.             int temp = 0;
  10.  
  11.             Random random = new Random();
  12.  
  13.             for (int i = 0; i < array.Length; i++)
  14.             {
  15.                 array[i] = random.Next(0, 100);
  16.                 Console.Write(array[i] + " ");
  17.             }
  18.  
  19.             Console.WriteLine();
  20.  
  21.             for (int i = 0; i < array.Length; i++)
  22.             {
  23.                 for (int j = 0; j < array.Length - 1; j++)
  24.                 {
  25.                     if (array[j] > array[j + 1])
  26.                     {
  27.                         temp = array[j];
  28.                         array[j] = array[j + 1];
  29.                         array[j + 1] = temp;
  30.                     }
  31.                 }
  32.             }
  33.  
  34.             for (int i = 0; i < array.Length; i++)
  35.             {
  36.                 Console.Write(array[i] + " ");
  37.             }
  38.         }
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement