下表列出了所有的lua語言支援的算術運算子。假設變數a持有10和變數b持有2程式設計客棧0,則:
例子試試下面的例子就程式設計客棧明白了所有的lua程式語言提供了算術運算子:
複製** **如下:
a = 21
b = 10
c = a + b
print("linxc**afe 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 xc**af", 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 &www.cppcns.comnbsp;-21
本文標題: lua中算術運算子的使用示例
本文位址:
算術運算子 的使用
我們來看一段 int a 3 int b 3 a b system.out.println a system.out.println b 上面 的輸出結果a值為4,b值為2 這說明a的原有值發生了改變,在原有值的基礎上自增1 b的原有值也發生了改變,在原有值的基礎上自減1 運算子,會在原有值的基礎上...
算術運算子
核心 運算子 就是對常量和變數進行操作的符號。分類 算術運算子,賦值運算子,比較運算子,邏輯運算子,位運算子,三目運算子 算術運算子 注意事項 a 整數相除只能得到整數。如果想得到小數,必須把資料變化為浮點數型別 b 獲取的是除法操作的商,獲取的是除法操作的餘數 class operatordemo...
算術運算子
算術運算子 加 減 乘 除 或 div div只保留整數部分 模 或 mod 查詢員工的姓名和薪資 select ename,salary from t employee 查詢員工的姓名和原來的薪資和漲薪1000元後的薪資 select ename,salary,salary 1000 from t...