Answer:
public static boolean isPowerOfTwo(int n) {
long exp = Math.round(Math.log(n) / Math.log(2));
return Math.pow(2, exp) == n;
}
Step-by-step explanation:
The opposite of power-of-2 is the 2-log, which is calculated using any log divided by log(2).
I'm sure you can do the input part yourself!