Advertisement
rootuss

stringi laczenie

Feb 27th, 2017
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.    // cout << "Hello world!" << endl;
  8.  
  9.    string jeden="Ala ma ";
  10.    string dwa="kota";
  11.  
  12.    string trzy= jeden+dwa;
  13.  
  14.    cout<<trzy;
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement