本文介绍了通过一个较大的数字返回0分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我尝试这样做。
double test = ((2 / 7) * 100);
则返回0。
it returns 0.
有谁知道这是为什么,以及如何解决它?
Does anybody know why this is and how to work around it?
感谢
推荐答案
2月7日是整数除法,并且将返回0试试这个
2 / 7 is integer division, and will return 0. Try this instead
2.0 / 7
(double) 2 / 7
这篇关于通过一个较大的数字返回0分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!