“LlFloor”的版本间的差异

来自人工智能助力教育知识百科
跳转至: 导航搜索
(创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名 = Function: integer llFloor( float val ); |参数= 参数:float val…”)
 
Mkx讨论 | 贡献
 
第4行: 第4行:
 
{{函数详情
 
{{函数详情
 
|函数名 = Function:  integer llFloor( float val );
 
|函数名 = Function:  integer llFloor( float val );
|参数= 参数:float val – Any valid float value
+
|参数= 参数:float val –任何有效的浮点值
|返回值= 返回值:Returns an integer that is the integer value of val rounded towards negative infinity (return <= val).
+
|返回值= 返回值:返回一个整数,该整数是向负无穷取整的val的整数值(返回<=val)。
  
  
|注意事项=The returned value is -2147483648 (0x80000000) if the arithmetic result is outside of the range of valid integers (-2147483648 to 2147483647 inclusive).
+
|注意事项=如果算术结果超出有效整数的范围(包括-2147483648到2147483647),则返回值为-2147483648(0x8000000)。
  
  
第40行: 第40行:
  
 
|相关函数=
 
|相关函数=
[[llRound]] – Rounds the float to an integer towards the closest integer
+
[[llRound]] – 将浮点数舍入到接近最近整数的整数
 
   
 
   
[[llCeil]] – Rounds the float to an integer towards positive infinity
+
[[llCeil]] – 将浮点向正无穷大取整
 
}}
 
}}

2020年5月18日 (一) 01:56的最新版本

Template:Needs Translation/


函数名
Function: integer llFloor( float val );
参数:float val –任何有效的浮点值
返回值:返回一个整数,该整数是向负无穷取整的val的整数值(返回<=val)。
注意事项
如果算术结果超出有效整数的范围(包括-2147483648到2147483647),则返回值为-2147483648(0x8000000)。
示例
示例1
default
{
   state_entry()
   {
       llSay(0,  "The floor value of -4.5 is: "+(string)llFloor(-4.5) );
       //Returns "The floor value of -4.5 is: -5"
 
       llSay(0,  "The floor value of -4.9 is: "+(string)llFloor(-4.9) );
       //Returns "The floor value of -4.9 is: -5"
 
       llSay(0,  "The floor value of -4.1 is: "+(string)llFloor(-4.1) );
       //Returns "The floor value of -4.1 is: -5"
 
       llSay(0,  "The floor value of 4.5 is: "+(string)llFloor(4.5) );
       //Returns "The floor value of 4.5 is: 4"
 
       llSay(0,  "The floor value of 4.9 is: "+(string)llFloor(4.9) );
       //Returns "The floor value of 4.9 is: 4"
 
       llSay(0,  "The floor value of 4.1 is: "+(string)llFloor(4.1) );
       //Returns "The floor value of 4.1 is: 4"
    }
}
相关函数
llRound – 将浮点数舍入到接近最近整数的整数

llCeil – 将浮点向正无穷大取整

相关事件