pabloliva87

Ej11Chapter20C++

Aug 19th, 2013
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main(void)
  4. {
  5.     std::string s1("HolaMundo");
  6.  
  7.     (s1.replace(0, 3, s1.substr(6, 9))).replace(6, 9, s1.substr(0, 3));
  8.  
  9.     std::cout << s1 << std::endl;
  10.  
  11.     return EXIT_SUCCESS;
  12. }
Add Comment
Please, Sign In to add comment