Advertisement
Josif_tepe

Untitled

Dec 21st, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.52 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     int n;
  6.     while(scanf("%d",&n)){
  7.         int prevrtenBroj=0;
  8.         for(int i=n;i>0;i/=10){
  9.             int cifra=i%10;
  10.             prevrtenBroj=(prevrtenBroj*10)+cifra;
  11.         }
  12.         int zbir=0;
  13.         for(int j=1;j<=prevrtenBroj;j++){
  14.             if(prevrtenBroj%j==0){
  15.                 zbir+=j;
  16.             }
  17.         }
  18.         if(zbir%2==0){
  19.             printf("DA");
  20.         }
  21.         else{
  22.             printf("NE");
  23.         }
  24.     }
  25.        
  26.     return 0;
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement