0
I can't understand Exponentiation. What does that two multiplication signs ** means ? Please help !
3 Respuestas
+ 2
n**2 = n^2 = n squared.
var n = 2;
n**2 = 4.
var n = 6;
n**2 = 36.
n**3 = n^3 = n cubed.
var n = 2;
n**3 = 8.
var n = 6
n**3 = 216.
0
thanks. I will try