C#中使用system.array类的方法操作数组。

使用system.array类的方法操作数组。 实验要求:使用system.array类的方法获取已知数组(数组元素为80,90,67,89,78,85, 45,69,77,95)的维数、长度,并对数组排序、反转。
最新回答
浪子寻欢

2024-11-07 01:40:51

int[]
arr
=
new
int[]
{
80,90,67,89,78,85,45,69,77,95};
Console.WriteLine("长度:{0}",arr.Length);//长度
Console.WriteLine("维数:{0}",
arr.Rank);//维数
Array.Sort(arr);
Console.WriteLine("排序:");
foreach
(int
s
in
arr)
Console.Write(s+"
");//排序
Array.Reverse(arr);
Console.WriteLine("\n反转:");
foreach
(int
s
in
arr)
Console.Write(s+"
");//反转
希望对你有帮助