Roblox上でLuaを利用して四則演算を行ってみる
Luaでは各演算に下記の算術記号を利用する
No. | 演算 | 算術記号 |
1 | 足し算 | + |
2 | 引き算 | – |
3 | 掛け算 | * |
4 | 割り算 | / |
5 | 割り算のあまり | % |
足し算
apple = 5 grape = 7 sum = apple + grape print(sum)
出力
12
引き算
hp = 100 damage = 40 difference = hp - damage print(difference)
出力
60
掛け算
price = 80 amount = 5 product = price * amount print(product)
出力
400
割り算
distance = 400 speed = 40 duration = distance / speed print(duration)
出力
10
割り算のあまり(剰余)
candy = 10 numberOfPeople = 4 remainder = candy % numberOfPeople print(remainder)
出力
2
次のステップ