运行 ❯
获取你自己的
C#
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
using System; namespace MyApplication { class Program { static void Main(string[] args) { // Sort a string string[] cars = {"Volvo", "BMW", "Ford", "Mazda"}; Array.Sort(cars); foreach (string i in cars) { Console.WriteLine(i); } // Sort an int int[] myNumbers = {5, 1, 8, 9}; Array.Sort(myNumbers); foreach (int i in myNumbers) { Console.WriteLine(i); } } } }
宝马
福特
马自达
沃尔沃
1
5
8
9