RosettaCodeData/Task/Real-constants-and-functions/Elixir/real-constants-and-functions.elixir
2016-12-05 22:15:40 +01:00

16 lines
645 B
Text

defmodule Real_constants_and_functions do
def main do
IO.puts :math.exp(1) # e
IO.puts :math.pi # pi
IO.puts :math.sqrt(16) # square root
IO.puts :math.log(10) # natural logarithm
IO.puts :math.log10(10) # base 10 logarithm
IO.puts :math.exp(2) # e raised to the power of x
IO.puts abs(-2.24) # absolute value
IO.puts Float.floor(3.1423) # floor
IO.puts Float.ceil(20.125) # ceiling
IO.puts :math.pow(3,2) # exponentiation
end
end
Real_constants_and_functions.main