Advertisement
rootuss

stringi 4

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