Advertisement
Josif_tepe

Untitled

Mar 27th, 2024
575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.         int n;
  5.         scanf("%d", &n);
  6.  
  7.         int niza[n];
  8.  
  9.         for(int i = 0; i < n; i++) {
  10.             scanf("%d", &niza[i]);
  11.         }
  12.        
  13.         int parni = 0, neparni = 0;
  14.         for(int i = 0; i < n; i++) {
  15.             if(niza[i] % 2 == 0) {
  16.                 parni++;
  17.             }
  18.             else {
  19.                 neparni++;
  20.             }
  21.         }
  22.     printf("Vo nizata ima %d parni, a neparni %d\n", parni, neparni);
  23.        return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement