#include using namespace std; int main() { int counter; cout << "Find first odd number > 3 that's divisible by 3: " << endl; for (int i=4; ;i++) { if ((i%2 != 0) && (i%3 == 0)) { // not even, and divisible by 3 cout << "Found it! It's " << i << endl; break; } } }