如何将两个整数相除以获得双精度数?
How do I divide two integers to get a double?
你想投数字:
double num3 = (double)num1/(double)num2;
注意:如果 C# 中的任何参数是 double
,则使用 double
除法会产生 double
.因此,以下方法也可以:
Note: If any of the arguments in C# is a double
, a double
divide is used which results in a double
. So, the following would work too:
double num3 = (double)num1/num2;
更多信息见:
点网 Perls
这篇关于如何将两个整数相除以获得双精度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!