猿问
C#如何让数组逆序排列
C#如何让数组逆序排列
POPMUISE
浏览 498
回答 4
4回答
呼唤远方
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);}
0
0
0
人到中年有点甜
Array是抽象类,提供了很多静态方法,供各种数组使用:public static void Test(){int[] array = { 0, 1, 2, 3, 4 };Array.Reverse(array);}一试便知。
0
0
0
随时随地看视频
慕课网APP
相关分类
C#
typedef入门问题
1 回答
我要回答