Advertisement
MeehoweCK

Untitled

Jul 19th, 2018
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.81 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     string jakis_napis;
  8.     jakis_napis = "Beyond the horizon of the place we lived when we were young \nIn a world of magnets and miracles \nOur thoughts strayed constantly and without boundary \nThe ringing of the division bell had begun \nAlong the Long Road and on down the Causeway \nDo they still meet there by the Cut \nThere was a ragged band that followed in our footsteps \nRunning before times took our dreams away \nLeaving the myriad small creatures trying to tie us to the ground \nTo a life consumed by slow decay \nThe grass was greener \nThe light was brighter \nWhen friends surrounded \nThe nights of wonder";
  9.  
  10.     // \n przechodzi do następnego wiersza
  11.     cout << jakis_napis << endl;
  12.     cout << jakis_napis.size() << endl;
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement