Advertisement
Josif_tepe

Untitled

Nov 14th, 2022
705
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.53 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int main() {
  6.     int N;
  7.     scanf("%d", &N);
  8.    
  9.     int zbir = 0;
  10.     for(int i = 1; i <= N; i++) {
  11.         if(N % i == 0) {
  12.            // i e delitel na N
  13.             zbir += i;
  14.         }
  15.     }
  16.     int proizvod = 1;
  17.     while(N > 0) {
  18.         int posledna_cifra = N % 10;
  19.         proizvod *= posledna_cifra;
  20.         N /= 10;
  21.     }
  22.     if((zbir % 2) == (proizvod % 2)) {
  23.         printf("DA\n");
  24.     }
  25.     else {
  26.         printf("NE\n");
  27.     }
  28.    
  29.    
  30.     return 0;
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement