...

/

Challenge: The Nearest Power of 2

Challenge: The Nearest Power of 2

Find the nearest power of 2 for a number that has been input.

Task

Write a program that takes a positive number (num) and finds the power of 2 nearest to that number. The program stores the resulting value to pwr.

If there are two candidate values, display the smaller one. For example, 22 and ...