Computer Science, asked by singhjyotisingh39031, 2 months ago

a.Construct valid statement for the following using Mathematical functions: i.Print m raised to the power n .

Answers

Answered by TH4KUR
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