为了账号安全,请及时绑定邮箱和手机立即绑定

C#如何让数组逆序排列

C#如何让数组逆序排列

C#
POPMUISE 2019-05-31 13:02:33
C#如何让数组逆序排列
查看完整描述

4 回答

?
呼唤远方

TA贡献1856条经验 获得超11个赞

int[] a = new int[6] { 1, 8, 3, 4, 5, 7 };
Array.Reverse(a);//倒序
Array.Sort(a);//排列从小到大

foreach (var item in a)
{
Console.WriteLine(item);
}



查看完整回答
反对 回复 2019-06-01
?
人到中年有点甜

TA贡献1895条经验 获得超7个赞

Array是抽象类,提供了很多静态方法,供各种数组使用:
public static void Test()
{
int[] array = { 0, 1, 2, 3, 4 };
Array.Reverse(array);
}

一试便知。



查看完整回答
反对 回复 2019-06-01
  • 4 回答
  • 0 关注
  • 497 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信