함수 tan()

(Tan에서 넘어옴)


1 Excel[ | ]

=TAN(1)
// 1.557407725
=TAN(PI()/4)
// 1

2 PHP[ | ]

echo tan(1);
// 1.5574077246549
echo tan(M_PI/4);
// 1

3 Python[ | ]

import math
print math.tan(1)
# 1.55740772465
print math.tan(math.pi/4)
# 1.0

4 PowerShell[ | ]

[math]::tan(1)
# 1.5574077246549
[math]::tan([math]::pi/4)
# 1

5 Ruby[ | ]

puts Math::tan(1)
# 1.5574077246549
puts Math::tan(Math::PI/4)
# 1.0

6 SQL[ | ]

6.1 MySQL[ | ]

SELECT TAN(1);
# 1.5574077246549023

7 같이 보기[ | ]

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