C# 双精度、小数问题

发布于 2024-11-14 22:08:55 字数 83 浏览 4 评论 0原文

为什么这个计算:双数 = (13 /(13+12+13))

等于 0?

我想应该是0.34左右!

谢谢!

Why does this calcuation: double number = (13 /(13+12+13))

equals 0?

It should be around 0.34, I think!

Thanks!

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

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

发布评论

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

评论(6

缺⑴份安定 2024-11-21 22:08:55

因为您要将 intint 相除。你应该做

double number = (13.0 /(13.0+12.0+13.0));

Because you are dividing an int with an int. You should be doing

double number = (13.0 /(13.0+12.0+13.0));
娇柔作态 2024-11-21 22:08:55

那是整数。所以它进行整数除法。因此截断为下一个较小(更接近 0)的整数。

.0 添加到像 13.0 这样的数字,使其成为双精度。

That are integers. So it does integer division. And thus truncates to the next lower(closer to 0) integer.

Add a .0 to a number like 13.0 to make it a double.

小…红帽 2024-11-21 22:08:55

因为您在公式中使用了所有 INT - 结果也将被视为 INT

试试这个:

var result = 13.0 / (13.0 + 12.0 + 13.0)

你的结果将是:

0.34210526315789475

Because you're using all INT in your formula - it will be treated as INT for the result too.

Try this instead:

var result = 13.0 / (13.0 + 12.0 + 13.0)

and your result will be:

0.34210526315789475
岁月静好 2024-11-21 22:08:55

尝试添加 .0:

(13.0 /(13+12+13))

否则您将处理整数。

Try adding a .0:

(13.0 /(13+12+13))

Otherwise you're dealing with integers.

Oo萌小芽oO 2024-11-21 22:08:55

另一个选项是将其中一个参数显式转换为 double,从而强制运行时执行 double 除法。例如:

double result = ((double)13 / (13 + 12 + 13)); 

Another option is to cast one of the arguments explicitly to double and thus forcing the runtime to perform double division. e.g. :

double result = ((double)13 / (13 + 12 + 13)); 
已下线请稍等 2024-11-21 22:08:55

添加“.0”将有助于:

double number = (13.0 /(13.0+12.0+13.0));

Adding a ".0" will help:

double number = (13.0 /(13.0+12.0+13.0));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文