CS17
20 pts., Apr. 26
for (int i = 1; i < 30; i *= 2) cout << i << endl;
1 2 4 8 16
for (int i = 1; i < 30; i += 3) { if (i % 2 == 1) // If i is odd. continue; else if (i == 10) break; cout << i << endl; }
4