+ 1
What do the method Pow??
For example, "Console.WriteLine(Pow(3, 4));" why The result is 81??
1 Odpowiedź
+ 2
Pow() is a method for exponensiation
Pow(3,4) is equal to 3*3*3*3 which is 81
For example, "Console.WriteLine(Pow(3, 4));" why The result is 81??