gpt4 book ai didi

actionscript-3 - ActionScript 中是否有 div() 函数?

转载 作者:行者123 更新时间:2023-12-04 04:32:20 25 4
gpt4 key购买 nike

我说的是 C 中的 div(X,Y) 函数,它返回 X 减去 Y 的次数

如果你感到困惑,我在说这个:

div(30,5) returns 6 (30 is reduced 6 times by 5)
div(34,7) returns 4 (you can reduce 30 by 7 four times, leaving 6 behind)

有这样的功能吗?

最佳答案

我不相信有,虽然创建你自己的相当简单:

function div(a:Number,b:Number):Number
{
return Math.floor(a/b);
}

关于actionscript-3 - ActionScript 中是否有 div() 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8084598/

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