我正在尝试使用浮点数四舍五入,Math.ceil()
但它一直给我错误“必需:浮点数,找到:双精度”。问题是所有变量都定义为浮点数。我能做些什么来完成这项工作?该行如下所示:
perU30F = Math.ceil((under30FY / totalWatchers) * 100);
其中perU30F
,under30FY
和totalWatchers
都定义为浮点数
我正在尝试使用浮点数四舍五入,Math.ceil()
但它一直给我错误“必需:浮点数,找到:双精度”。问题是所有变量都定义为浮点数。我能做些什么来完成这项工作?该行如下所示:
perU30F = Math.ceil((under30FY / totalWatchers) * 100);
其中perU30F
,under30FY
和totalWatchers
都定义为浮点数