Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个例如 57 / 30 的计算,所以解决方案将是 1,766666667 .. 我首先如何得到 1,766666667 我只得到 1 或 1.00,然后我如何四舍五入解决方案(为 2 )?
多谢!
57/30 执行整数除法。要获得浮点(或双精度)结果,您应该将 1 个操作数设为浮点值:
result = 57.0/30;
要全面了解结果,请查看标准floor和ceil功能。
floor
ceil