gpt4 book ai didi

C#: double 的 Array.Sort 方法?

转载 作者:太空宇宙 更新时间:2023-11-03 19:23:44 27 4
gpt4 key购买 nike

我有一个数组 ( double ): ox_test 具有已知数量的元素。

当我编码时:

Array.Sort(ox_test);

然后,看看数组是否已排序:

for (int y = 1; y <= ox_test.Length; y++)
MessageBox.Show(".x: " + ox_test[y]);

.. 我得到 ... 0, 0, 0, 0, 0(如果元素数为 5)。请帮忙,谢谢!

所以我修改了两个for循环:

for (int y = 0; y < ox_test.Length; y++)
MessageBox.Show(".x: " + ox_test[y]);
// HERE i get the values not sorted but != 0

Array.Sort(ox_test);

for (int y = 0; y < ox_test.Length; y++)
MessageBox.Show(".x s: " + ox_test[y]);
// HERE i get only 0 values

最佳答案

// sort double array
double[] doubleArray = new double[5] { 8.1, 10.2, 2.5, 6.7, 3.3 };
Array.Sort(doubleArray);
// write array
foreach (double d in doubleArray) Console.Write(d + " "); // output: 2.5 3.3 6.7 8.1 10.2

关于C#: double 的 Array.Sort 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10266751/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com