a.Construct valid statement for the following using Mathematical functions: i.Print m raised to the power n .
Answers
Answered by
0
Explanation:
As you have not mentioned which language to use i am using JavaScript.
const m = propmt("Value of m please:")
const n = propmt("Value of n please:")
var x = Math.pow(m,n)
console.log(x)
Similar questions