//Print 1 2 4 8 16 32 64 128 256 #include using namespace std; void main() { int n; //used to 'drive' the loop for (n = 1; n<500; n*=2) { cout<