"함수 cos()"의 두 판 사이의 차이

잔글 (Jmnote 사용자가 Cos 문서를 함수 cos 문서로 옮겼습니다)
16번째 줄: 16번째 줄:
echo cos(M_PI);
echo cos(M_PI);
// -1
// -1
</source>
==PowerShell==
[[category: PowerShell]]
<source lang='PowerShell'>
[math]::cos(1)
# 0.54030230586814
[math]::cos([math]::pi)
# -1
</source>
</source>



2015년 4월 1일 (수) 14:33 판


1 Excel

=COS(1)
// 0.540302306
=COS(PI())
// -1

2 PHP

echo cos(1);
// 0.54030230586814
echo cos(M_PI);
// -1

3 PowerShell

[math]::cos(1)
# 0.54030230586814
[math]::cos([math]::pi)
# -1

4 Python

import math
print math.cos(1)
# 0.540302305868
print math.cos(math.pi)
# -1.0

5 Ruby

puts Math::cos(1)
# 0.5403023058681398
puts Math::cos(Math::PI)
# -1.0

6 같이 보기

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