GastonFontenla

Untitled

Jun 13th, 2017
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. string s;
  2. getline(cin, s);
  3.  
  4. while(s.size())
  5. {
  6.     ///Hacer algo con la linea
  7.     getline(cin, s);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment