求一道C#编程题,题目:编写一个类,里面包含一个排序的方法Sort();当输入的是一串整数时就按从小到大顺序

在这里我先谢谢大家了!!!
2024-11-23 13:33:31
推荐回答(1个)
回答1:

class Program
{
static void Main(string[] args)
{
int[] nums = new int[] { 22, 33, 44, 55, 66, 21, 15, 9, 85 };
Sort(nums);
int i = 0;
// 排序后输出
Console.WriteLine("排序后的数字为:");
for (i = 0; i < nums.Length; i++)
{
Console.WriteLine("{0}", nums[i]);
}
Console.ReadLine();
}

static void Sort(int[] nums)
{

int temp = 0;
int i = 0, j = 0;
// 开始排序
for (i = 0; i < nums.Length - 1; i++)
{
for (j = 0; j < nums.Length - 1 - i; j++)
{
if (nums[j] > nums[j + 1])
{
// 交换元素
temp = nums[j];
nums[j] = nums[j + 1];
nums[j + 1] = temp;
}
}
}
}
}