Answer:
yes I agree with you
Explanation:
I have been keyboarding for the past 7 hours.
Most significant digit. That's the same that it's called for any number system.
Answer:
public static int powOfTwo(int input) {
return input*input;
}
You will have to call this method in main
for printing it, write
System.out.println(powOfTwo(your number));
in public static void main(str[]args) {
}