Computer Science, asked by anirban48, 8 months ago

write down the syntax for the functions in java programming to find the exponent of a number​

Answers

Answered by deenacelinescaria
2

Answer:

pow(a,b)

Explanation:

it finds the value of a raised to b

Answered by Anonymous
1

Syntax:-

n = Math.pow(a,2);

here,

n , is the variable.

a , is the number to which the power 2 is raised...

Similar questions