编辑这个页面须要登录或更高权限!
Erlang 数字
此方法返回指定值的余弦值。
cos(X)
X-为余弦函数指定一个值。
返回值是代表余弦值的浮点值。
-module(helloworld). -import(math,[cos/1]). -export([start/0]). start() -> Cosin = cos(45), io:fwrite("~p~n",[Cosin]).
0.5253219888177297