fork download
  1. #include <iostream>
  2. #include <sstream>
  3. #include <string>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. //SetConsoleCP(1251);
  9. //SetConsoleOutputCP(1251);
  10. //^^с кодировками в винде сами, если что
  11. size_t count = 0;
  12. string s; getline(cin, s);
  13. cout << "--- Words:" << endl;
  14. for(stringstream sstr(s);sstr>>s;count++) cout << s << endl;
  15. cout << "\n--- Total:" << count << endl;
  16. }
Success #stdin #stdout 0.01s 5300KB
stdin
AAC
 
stdout
--- Words:
AAC

--- Total:1