Main.cs
using
System;
class
Program {
-
public
static
int
Main() {
-
int
[] ara=
new
int
[] { 7, 10, 3, 8, 9, 2, 15, 1, 4, 6, 12 };
-
//массив до сортировки
-
foreach
(var i
in
ara) {
-
Console.Write(
"{0} "
, i);
-
}
-
Console.WriteLine();
-
//сортировка по возрастанию
-
Array.Sort(ara);
-
//массив после сортировки
-
foreach
(var i
in
ara) {
-
Console.Write(
"{0} "
, i);
-
}
-
Console.WriteLine();
-
Console.ReadKey();
-
return
0;
-
}
}
using
System;
class
Program {
-
public
static
int
Main() {
-
int
[] ara=
new
int
[] { 7, 10, 3, 8, 9, 2, 15, 1, 4, 6, 12 };
-
//массив до сортировки
-
foreach
(var i
in
ara) {
-
Console.Write(
"{0} "
, i);
-
}
-
Console.WriteLine();
-
//сортировка по возрастанию
-
Array.Sort(ara);
-
//массив после сортировки
-
foreach
(var i
in
ara) {
-
Console.Write(
"{0} "
, i);
-
}
-
Console.WriteLine();
-
Console.ReadKey();
-
return
0;
-
}
}
7 10 3 8 9 2 15 1 4 6 12
1 2 3 4 6 7 8 9 10 12 15
1 2 3 4 6 7 8 9 10 12 15