"상수 E"의 두 판 사이의 차이

49번째 줄: 49번째 줄:


==같이 보기==
==같이 보기==
*[[math.log]]
*[[EXP]]
*[[EXP]]
*[[PI]]
*[[PI]]
*[[자연상수 e]]
*[[자연상수 e]]

2014년 6월 27일 (금) 00:48 판

EXP
M_E
Math.e

1 C#

Console.WriteLine("E is approximately "+Math.E);
Console.WriteLine("E is approximately {0}", Math.E);
//E is approximately 2.71828182845905

2 Excel

=EXP(1)
// 2.718281828

3 Java

System.out.println("E is approximately "+Math.E);

4 PHP

echo M_E;
echo exp(1);
// 2.718281828459

5 Python

import math
print("E is approximately %s" % math.e)

6 Ruby

puts("E is approximately %s" % Math::E)

7 같이 보기

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