算術演算子OperatorDescription+加算-減算*乗算**べき乗/除算%剰余 HTML#{ 2 + 3 } (outputs 5) #{ 10 * 5 } (outputs 50) #{ 11 % 4 } (outputs 3)