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 )
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
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
Luaプログラミングの例(VIII)。生産者・消費者問題
-
Luaにおけるイテレータとジェネリックforの使い方を徹底解説
-
Luaのプログラミング例(4)。テーブルライブラリ、文字列ライブラリ、システムライブラリからなるLua標準ライブラリ
-
Luaでモジュールを使うためのいくつかの基本的なこと
-
Luaで変数とフロー制御をはじめよう
-
Luaステートメント入門
-
Luaは配列(tabble)に値が含まれているかどうかを検出します。
-
Luaチュートリアル(XVI)。システムライブラリ (os ライブラリ)
-
Luaチュートリアル(XIII)。テーブルを弱く参照する
-
Luaチュートリアル(6):コンパイルと実行でエラーが発生した場合