math.s
来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· S 代码 · 共 38 行
S
38 行
*
* Math built-in functions
*
.float $acos(0.0)
.float $asin(0.0)
.float $atan(0.0)
.float $atan2(1.0,2.0)
.float $ceil(1.5)
.float $cosh(0.0)
.float $cos(0.0)
.float $cvf(1)
.int $cvi(2.5)
.int $cvi(-2.5)
.float $exp(1.0)
.float $fabs(-2.5)
.float $floor(3.4)
.float $fmod(10,4)
.int $int(1.2)
.float $ldexp(1,2)
.float $log10(1.0)
.float $log(1.0)
.float $max(1.0,2.0)
.float $min(1.0,2.0)
.float $pow(2.0,3.0)
.float $round(4.5)
.float $round(-4.5)
.int $sgn(-1.0)
.int $sgn(0)
.int $sgn(1)
.float $sin(0.0)
.float $sinh(0.0)
.float $sqrt(1.0)
.float $tan(0.0)
.float $tanh(0.0)
.float $trunc(-1.5)
.float $trunc(1.5)
.end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?