Write a program to get the result of 2^8.
please tell the answer fast and correct
Answers
Answered by
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