Advertisement
Josif_tepe

Untitled

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