Advertisement
erzis

Untitled

Nov 22nd, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. std::string myString = "Punkty: ";
  2. std::stringstream points;
  3. points << 0;
  4. std::string aux;
  5. points >> aux;
  6. myString += aux;
  7. std::cout << myString << std::endl;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement