Advertisement
r1411

Файлы

Jun 12th, 2021 (edited)
681
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;
  4.  
  5. void main() {
  6.     ifstream in("in.txt");
  7.     ofstream out("out.txt");
  8.  
  9.     int x;
  10.     while (in >> x) {
  11.         if (x % 2 == 0)
  12.             out << x << " ";
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement