함수 sin()


1 Excel[ | ]

=SIN(1)
//
=SIN(PI())
//

2 PHP[ | ]

echo sin(1);
//
echo sin(M_PI);
//

3 PowerShell[ | ]

[math]::sin(1)
#
[math]::sin([math]::pi)
#

4 Python[ | ]

import math
print math.sin(1)
#
print math.sin(math.pi)
#

5 Ruby[ | ]

puts Math::sin(1)
#
puts Math::sin(Math::PI)
#

6 SQL[ | ]

6.1 MySQL[ | ]

SELECT SIN(1);
# 0.8414709848078965

7 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}