Data update
This commit is contained in:
parent
0df55f9f24
commit
aec8ed51b6
1045 changed files with 18889 additions and 2777 deletions
12
Task/Gamma-function/EasyLang/gamma-function.easy
Normal file
12
Task/Gamma-function/EasyLang/gamma-function.easy
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
e = 2.718281828459
|
||||
func stirling x .
|
||||
return sqrt (2 * pi / x) * pow (x / e) x
|
||||
.
|
||||
print " X Stirling"
|
||||
for i to 20
|
||||
d = i / 10
|
||||
numfmt 2 4
|
||||
write d & " "
|
||||
numfmt 3 4
|
||||
print stirling d
|
||||
.
|
||||
Loading…
Add table
Add a link
Reference in a new issue