fork(1) download
  1. #include <iostream>
  2. #include <string>
  3. #include <algorithm>
  4. using namespace std;
  5.  
  6. int main() {
  7.  
  8. auto f=[](char &x){x=(x+1)%255;};
  9. auto g=[](char &x){--x;x%=255;};
  10. std::string s;
  11. std::getline(std::cin,s);
  12.  
  13. std::cout<<s<<std::endl;
  14. std::for_each(std::begin(s),std::end(s),f);
  15. std::cout<<s<<std::endl;
  16.  
  17. std::for_each(std::begin(s),std::end(s),g);
  18. std::cout<<s<<std::endl;
  19. return 0;
  20. }
Success #stdin #stdout 0s 3432KB
stdin
Hello world 
stdout
Hello world 
Ifmmp!xpsme!
Hello world