Mwnci pow10() Function

Syntax

pow10(number)

Description

The pow10() function returns 10 to the power of n, the base-10 exponential of n.

Example

include("math")
println(pow10(2))
println(pow10(3))


100
1000