Computer Science, asked by adhyagupta0, 1 month ago

Write a program to get the result of 2^8.
please tell the answer fast and correct ​

Answers

Answered by priya7668
1

Answer:

int v = Math.pow(2,8);

System.out.print(+v);

Explanation:

I'm using Java language...

here, pow is used to find power value.

HOPE IT WILL HELP!

Similar questions