CoffeeScript 數(shù)學常數(shù)

2022-06-29 16:59 更新

數(shù)學常數(shù)

問題

你需要使用常見的數(shù)學常數(shù),比如π或者e。

解決方案

使用Javascript的Math object來提供通常需要的數(shù)學常數(shù)。

Math.PI
# => 3.141592653589793

# Note: Capitalization matters! This produces no output, it's undefined.
Math.Pi
# =>

Math.E
# => 2.718281828459045

Math.SQRT2
# => 1.4142135623730951

Math.SQRT1_2
# => 0.7071067811865476

# Natural log of 2. ln(2)
Math.LN2
# => 0.6931471805599453

Math.LN10
# => 2.302585092994046

Math.LOG2E
# => 1.4426950408889634

Math.LOG10E
# => 0.4342944819032518

討論

另外一個例子是關(guān)于一個數(shù)學常數(shù)用于真實世界的問題,是數(shù)學章節(jié)有關(guān)[弧度和角度]( http://coffeescript-cookbook.github.io/chapters/math/radians-degrees)的部分。

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號