상수 E

Jmnote (토론 | 기여)님의 2014년 5월 27일 (화) 21:05 판
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 }}