SoFunction
Updated on 2025-04-08

e is the base of natural logarithm

'e=1+1/1!+1/2!+1/3!+1/4!+……+1/n!
'φkρ=αe
'Where α and k are constants, φ is the polar angle, ρ is the polar diameter, and e is the base of natural logarithm. For the sake of discussion convenience, we define e or the form of e undergoing certain transformation and recombination as "natural law". Therefore, the core of "natural law" is e, whose value is 2.71828..., which is an infinite loop number.
'e=(1+1/x)^x
'made by correy
'QQ:112426112
'email:leguanyuan@
'The first calculation method
e=1
m=1
n=0
do until n=99
m=(n+1)*m
e=e+1/m
n=n+1
loop
e
'The second calculation method is to use the language itself.
e = exp(1)
e
'The third calculation method is not very accurate.
x=999999999
e=(1+1/x)^x
e