fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <stdio.h>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. setlocale(LC_ALL, "Russian");
  10.  
  11. string previous = "The cat cat jumped ";
  12. string current;
  13. while (getline(cin, current)) {
  14. if (previous == current) {
  15. cout << "повторяющееся слово: " << current << "\n";
  16. }
  17. previous = current;
  18. }
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0s 3464KB
stdin
АЛЛАХУ АКБАР
АЛЛАХУ АКБАР
stdout
повторяющееся слово: АЛЛАХУ АКБАР