Lua中算术运算符的使用示例
程序员文章站
2022-03-20 22:16:58
下表列出了所有的lua语言支持的算术运算符。假设变量a持有10和变量b持有20,则:
例子
试试下面的例子就明白了所有的lua编程语言提供了算术运算...
下表列出了所有的lua语言支持的算术运算符。假设变量a持有10和变量b持有20,则:
例子
试试下面的例子就明白了所有的lua编程语言提供了算术运算符:
复制代码 代码如下:
a = 21
b = 10
c = a + b
print("line 1 - value of c is ", c )
c = a - b
print("line 2 - value of c is ", c )
c = a * b
print("line 3 - value of c is ", c )
c = a / b
print("line 4 - value of c is ", c )
c = a % b
print("line 5 - value of c is ", c )
c = a^2
print("line 6 - value of c is ", c )
c = -a
print("line 7 - value of c is ", c )
b = 10
c = a + b
print("line 1 - value of c is ", c )
c = a - b
print("line 2 - value of c is ", c )
c = a * b
print("line 3 - value of c is ", c )
c = a / b
print("line 4 - value of c is ", c )
c = a % b
print("line 5 - value of c is ", c )
c = a^2
print("line 6 - value of c is ", c )
c = -a
print("line 7 - value of c is ", c )
当执行上面的程序,它会产生以下结果:
复制代码 代码如下:
line 1 - value of c is 31
line 2 - value of c is 11
line 3 - value of c is 210
line 4 - value of c is 2.1
line 5 - value of c is 1
line 6 - value of c is 441
line 7 - value of c is -21
line 2 - value of c is 11
line 3 - value of c is 210
line 4 - value of c is 2.1
line 5 - value of c is 1
line 6 - value of c is 441
line 7 - value of c is -21
上一篇: 详解Lua中的数据类型
下一篇: Linux 中的Setfacl命令
推荐阅读
-
javascript中的void运算符语法及使用介绍_javascript技巧
-
JavaEE基础day02 1.定义Java中的变量 四类八种 2.变量定义和使用的注意事项 3.数据类型的转换、强制数据类型转换4.算数运算符、比较运算符、逻辑运算符、赋值运算符、三元运算符
-
Python中argparse库的基本使用(示例)
-
ES6中的解构、扩展运算符(...)、rest参数(...)的使用
-
IOS中MMDrawerController第三方抽屉效果的基本使用示例
-
spring boot中内嵌redis的使用方法示例
-
C#中is与As运算符号的使用详解
-
IO中flush()函数的使用代码示例
-
PHP模板引擎Smarty中变量的使用方法示例
-
MySQL中的运算符使用实例展示