#include #include #include using namespace std; int main(void) { const int SIZE = 4; int bird[ SIZE ] = {2, 4, 6, 8}; int bath[ 2 * SIZE ] = {1, 3, 5, 7, 9, 10, 11, 12}; vector robin(bird, bird + SIZE); vector::iterator iter; for(iter=robin.begin(); iter!=robin.end(); ++iter) // cout << *iter << ' '; // LINE L cout << endl; // vector finch(bath, bath + SIZE); for(iter=finch.begin(); iter!=finch.end(); ++iter) // cout << *iter << ' '; // LINE M cout << endl; // string HerName("Power I Watts"); string MyName("Water J Power"); string S1; if (HerName == MyName) cout << "Yes" << endl; // else // LINE N cout << "No" << endl; // if (HerName <= MyName) cout << "True" << endl; // else // LINE O cout << "False" << endl; // }