Luaで関係演算子を使用するためのチュートリアル
Lua言語がサポートするすべての関係演算子の一覧は以下の通りです。変数Aに10、変数Bに20が格納されているとします。
例
Luaプログラミング言語が提供するすべての関係演算子を理解するために、次の例を試してみてください。
b = 10
if( a == b )
then
print("Line 1 - a is equal to b" )
else
print("Line 1 - a is not equal to b" )
end
if( a ~= b )
then
print("Line 2 - a is not equal to b" )
else
print("Line 2 - a is equal to b" )
end
if ( a < b )
then
print("Line 3 - a is less than b" )
else
print("Line 3 - a is not less than b" )
end
if ( a > b )
then
print("Line 4 - a is greater than b" )
else
print("Line 5 - a is not greater than b" )
end
-- Lets change the value of a and b
a = 5
b = 20
if ( a <= b )
then
print("Line 5 - a is either less than or equal to b" )
end
if ( b >= a )
then
print("Line 6 - b is either greater than or equal to b" )
end
上記のプログラムを作成し、実行すると、以下のような結果が得られます。
Line 2 - a is not equal to b
Line 3 - a is not less than b
Line 4 - a is greater than b
Line 5 - a is either less than or equal to b
Line 6 - b is either greater than or equal to b
関連
最新
-
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 実装 サイバーパンク風ボタン