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.
我的函数的结果是这样的。0.702568。但我想要 0.70257.i 不能使用圆形函数。这个问题有解决方案吗?
通过使用花招。如果你想将你的数字四舍五入x到kth小数位,你可以这样做
x
kth
xrk = round(x*10^k)/10^k;
在你的例子k = 5中。
k = 5