Challenge: The Nearest Power of 2
Explore how to create a C++ program that finds the nearest power of two to a given positive number. This lesson helps you practice loops and decision-making by storing and displaying the closest power of two, reinforcing your understanding of controlling program flow in C++.
Task
Write a program that takes a positive number (num) and finds the power ...