gpt4 book ai didi

python - 没有 Math 模块的 Python 3 中的 Ceil 和 floor 等效?

转载 作者:太空狗 更新时间:2023-10-29 20:35:52 25 4
gpt4 key购买 nike

我需要在不使用 import math 的情况下设置 ceil 和 floor 3/2 结果 (1.5)。

math.floor(3/2) => 3//2math.ceil(3/2) => ?

好的,问题来了:对所有数字求和15 + 45 + 15 + 45 + 15 ...有 N 个项目。

sum = (n//2) * 5 + int(n/2) * 15

最佳答案

>>> 3/2
1.5
>>> 3//2 # floor
1
>>> -(-3//2) # ceil
2

关于python - 没有 Math 模块的 Python 3 中的 Ceil 和 floor 等效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32558805/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com