Advertisement
Infiniti_Inter

For Alisa(page 55 problem 9)

May 5th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <string>
  4. #include <windows.h>//для system("pause")
  5. using namespace std;
  6.  
  7.  
  8. int main()
  9. {
  10.     int k1, k2;
  11.     cin >> k1 >> k2;
  12.     k1--;// строки в 0 индексации
  13.     k2--;
  14.     ifstream in("input.txt");
  15.     while (in.peek() != EOF)
  16.     {
  17.         string current;
  18.         getline(in, current);
  19.         for (int i = k1; i <= k2; ++i)
  20.             cout << current[i];
  21.         cout << endl;
  22.     }
  23.     in.close();
  24.     system("pause");
  25. }
  26. /*
  27. Замечание: файл "input.txt" нужно создать
  28.  
  29. пример:
  30.  
  31. consoleInput: 2 5
  32.  
  33. file "input.txt":
  34.  
  35. abacaba
  36. cadaba
  37. KrivobokTOP
  38. NoVteniseTakSebe
  39.  
  40. consoleOutput:
  41. baca
  42. adab
  43. rivo
  44. oVte
  45.  
  46. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement