Advertisement
STANAANDREY

bac t4 2021 3

Jun 13th, 2022
951
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.91 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;
  4. ifstream fin1("bac1.txt");
  5. ifstream fin2("bac2.txt");
  6. int a, b, n, m, i = 1, j = 1;
  7.  
  8. int main() {
  9.     fin1 >> n >> a;
  10.     fin2 >> m >> b;
  11.  
  12.     while (i <= n && j <= m) {
  13.         if (a == b) {
  14.             fin1 >> a;
  15.             fin2 >> b;
  16.             i++, j++;
  17.         } else if (a < b) {
  18.             if (a % 5 == 0) {
  19.                 cout << a << ' ';
  20.             }
  21.             fin1 >> a;
  22.             i++;
  23.         } else {
  24.             if (b % 5 == 0) {
  25.                 cout << b << ' ';
  26.             }
  27.             fin2 >> b;
  28.             j++;
  29.         }
  30.     }
  31.  
  32.     while (i <= n) {
  33.         if (a % 5 == 0) {
  34.             cout << a << ' ';
  35.         }
  36.         fin1 >> a;
  37.         i++;
  38.     }
  39.  
  40.     while (j <= m) {
  41.         if (b % 5 == 0) {
  42.             cout << b << ' ';
  43.         }
  44.         fin2 >> b;
  45.         j++;
  46.     }
  47.  
  48.     return 0;
  49. }
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement