Compute and print a^b, and a^n, where a and b are floating point numbers and n is an integer.
use feature 'say';
my ($a, $b, $n) = (4.0, 0.5, 3); say $a**$b; # prints 2 say $a**$n; # prints 64
print *,a**b, a**n
import static java.lang.Math.pow; import static java.lang.System.out;
out.println(pow(a, b)); out.println(pow(a, n));
math
writeln('a^b=',power(a,b)); writeln('a^n=',power(a,n));
print(a ** b, a ** n)
puts a ** b, a ** n
No security, no password. Other people might choose the same nickname.