1. ホーム
  2. スクリプト・コラム
  3. ルア

Luaにおける算術演算子の例

2022-02-11 21:59:21

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 )

上記のプログラムを実行すると、次のような結果が得られます。

コピーコード コードは以下の通りです。
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