Bob103

Программа

Dec 21st, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <clocale>
  4. using namespace std;
  5. int main()
  6. {
  7. setlocale(LC_ALL, "Rus");
  8. string s = "Программа";
  9. const int len = s.length();
  10. for (int i = 1; i<len; i += 2)
  11. {
  12. cout << s[i];
  13. }
  14. for (int i = len % 2 ? len - 1 : len - 2; i >= 0; i -= 2)
  15. {
  16. cout << s[i];
  17. }
  18. cout << endl;
  19. system("pause");
  20. return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment