Advertisement
Josif_tepe

Untitled

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