Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string words;
  9. int sum = 0;
  10. cout << "Вводите слова (для завершения введите done)" << endl;
  11. getline(cin, words);
  12. while (words != "done")
  13. {
  14. getline(cin, words);
  15. }
  16. sum = words.size();
  17. cout << "\nВы ввели " << sum << " символов";
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement