/* * Test instalacji. Program powinien wypisac nazwy * 4 jezykow programowania w porzadku alfabetycznym. */ #include #include #include #include using namespace std; int main() { vector vs; vs.push_back("Python"); vs.push_back("Haskell"); vs.push_back("C++"); vs.push_back("Java"); sort(vs.begin(),vs.end()); for (vector::iterator i = vs.begin(); i != vs.end(); ++i) cout << *i << " "; cout << endl; }