Advertisement
Guest User

10ая задача для хуй пойми кого

a guest
May 22nd, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. // by 0pc0d3R
  2. #include <windows.h>
  3. #include <string>
  4. #include <vector>
  5. #include <algorithm>
  6. using namespace std;
  7. int main()
  8. {
  9.     setlocale(LC_ALL, "russian");
  10.     vector<string> Listik = { "Толчков", "Черножопов", "Ебанчук", "Пизданчук" };
  11.     reverse(Listik.begin(), Listik.end());
  12.     for (auto it : Listik) printf("%s\n", it.c_str());
  13.     system("pause");
  14.     return EXIT_SUCCESS;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement