如何在 C# 中返回包含十进制数字的双精度数组?

发布于 2025-01-15 02:53:39 字数 655 浏览 2 评论 0原文

这是我的第一个问题,所以我希望我能正确解释这一点;-)

我需要创建一个方法,该方法接受双精度数组、数字,并返回一个包含数字中每个元素的平方的新数组。 (任何帮助和指导将不胜感激。谢谢!)

我得到的参数如下:

<param name="numbers">Input array</param>
<returns>double array</returns>

        public double[] PowerArray(double[] numbers)

这是我到目前为止所写的,但它返回双数。我需要返回包含十进制数字。

        {
            double[] PowerArray = Array.ConvertAll(numbers, i => i * i);

            return PowerArray;
         }

我的指示是按照以下示例返回我的答案: double[] input = { -2.2, 0, 1.1, 3 } 应该返回 double[] [4.84, 0, 1.21。 9]。我的回报给了我 double[] [4.840000000000001, 0, 1.2100000000000002, 9]。

This is my first question, so I hope I explain this correctly ;-)

I need to create a method that takes in a double array, numbers, and returns a new array containing the square of each element in numbers. (Any help and guidance will be greatly appreciated. Thank you!)

The parameters I have been given are as follows:

<param name="numbers">Input array</param>
<returns>double array</returns>

        public double[] PowerArray(double[] numbers)

This is what I've written so far, but it returns double numbers. I need the return to contain decimal numbers.

        {
            double[] PowerArray = Array.ConvertAll(numbers, i => i * i);

            return PowerArray;
         }

My instructions are to return my answers following this example: double[] input = { -2.2, 0, 1.1, 3 } should return double[] [4.84, 0, 1.21. 9]. My return is giving me double[] [4.840000000000001, 0, 1.2100000000000002, 9].

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一人独醉 2025-01-22 02:53:39

您正在了解浮点数学的基本性质。浮点数是近似值。您不需要近似值,因此不适合使用此数据类型。

相反,请使用十进制来执行数学运算。如果您确实需要的话,您可以将结果强制转换回 double

using System.Linq;

// ...

public double[] PowerArray(double[] numbers)
{
    return numbers
        .Select(x => (decimal)x) // convert the element to a decimal
        .Select(x => x * x) // perform decimal-level multiplication
        .Select(x => (double)x) // convert the result back to a double
        .ToArray();
}

You're hitting the fundamental nature of floating point math. Floating point numbers are approximations. You don't want an approximation, therefore it's inappropriate to use this data type.

Instead, use decimal to perform the math. You can then cast the result back to a double if you really need it to be.

using System.Linq;

// ...

public double[] PowerArray(double[] numbers)
{
    return numbers
        .Select(x => (decimal)x) // convert the element to a decimal
        .Select(x => x * x) // perform decimal-level multiplication
        .Select(x => (double)x) // convert the result back to a double
        .ToArray();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文