二郎罪


此方法返回指定值的正弦值。

句法

sin(X)

参数

X - 为正弦函数指定一个值。

返回值

返回值是表示正弦值的浮点值。

例如

-module(helloworld). 
-import(math,[sin/1]). 
-export([start/0]). 

start() -> 
   Sin = sin(45), 
   io:fwrite("~p~n",[Sin]).

输出

当我们运行上面的程序时,我们将得到以下结果。

0.8509035245341184
erlang_numbers.htm