Hi,
How can I raise a number to a power?
I have not found such a formula and
a = b ** c;
does not work.
How can I raise a number to a power?
I have not found such a formula and
a = b ** c;
does not work.
$i = 2;
while(
$i <= c,
b = b * b;
$i = $i + 1;
);
a = b;
Comment