Advertisement
myloyo

7.3.18

Dec 17th, 2022 (edited)
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.82 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. #include <fstream>
  4. #include <string>
  5. #include <Windows.h>
  6.  
  7. using namespace std;
  8.  
  9. int main()
  10. {
  11.     setlocale(LC_ALL, "Russian");
  12.     SetConsoleCP(1251);
  13.     SetConsoleOutputCP(1251);
  14.     ifstream in("input.txt");
  15.     ofstream out("output.txt");
  16.     string s, k;
  17.     int c = 0;
  18.     while (getline(in, s)) {
  19.         for (int i = 0; i < s.length(); i++) {
  20.             if (not(s[i] >= ' ' && s[i] <= '&') && not (s[i] >= '(' && s[i] <= '/')) {
  21.                 c++;
  22.             }
  23.             else {
  24.                 if (c == 1) {
  25.                     int h = i - 1;
  26.                     s.erase(h, 1);
  27.                     c = 0;
  28.                     i -= 1;
  29.                 }
  30.                 else c = 0;
  31.             }
  32.         }
  33.         out << s << endl;
  34.     }
  35.     return 0;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement