Challenge: The Nearest Power of 2
Explore how to create a C++ program that identifies the nearest power of 2 to any positive number. Learn to use loops and decision-making statements effectively while handling edge cases, which enhances your understanding of control flow in programming.
Task
Write a program that takes a positive number (num) and finds the power ...