fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4. int i=1, n, prev, pres, fut, count = 0;
  5. cin >> n;
  6. cin >> prev >> prev; //вводим предыдущий элемент
  7. cin >> pres; //вводим текущий элемент
  8. while ((cin >> fut) && (i<n)) {
  9. if (prev % 2 == 0 && fut % 2 == 0)
  10. count++;
  11. prev = pres; //приравниваем предыдущий к текущему
  12. pres = fut; //приравниваем текущий к будущему
  13. i++;
  14. }
  15. cout << count;
  16. return 0;
  17. }
Success #stdin #stdout 0s 4296KB
stdin
Standard input is empty
stdout
Standard output is empty