Main.cs
using
System;
class
Program {
-
public
static
int
Main() {
-
int
[] ara=
new
int
[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
-
//массив до сортировки
-
foreach
(var i
in
ara) {
-
Console.Write(
"{0} "
, i);
-
}
-
Console.WriteLine();
-
//метод Reverse отобразит значения массива с конца
-
Array.Reverse(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
[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
-
//массив до сортировки
-
foreach
(var i
in
ara) {
-
Console.Write(
"{0} "
, i);
-
}
-
Console.WriteLine();
-
//метод Reverse отобразит значения массива с конца
-
Array.Reverse(ara);
-
//массив после сортировки
-
foreach
(var i
in
ara) {
-
Console.Write(
"{0} "
, i);
-
}
-
Console.WriteLine();
-
Console.ReadKey();
-
return
0;
-
}
}
1 2 3 4 5 6 7 8 9 10
10 9 8 7 6 5 4 3 2 1
10 9 8 7 6 5 4 3 2 1