Advertisement
Josif_tepe

Untitled

Nov 15th, 2022
781
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.68 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.     int najgolem_broj = 0;
  13.     for(int i = 1; i < N; i++) {
  14.         int broj = i;
  15.         int obraten_broj = 0;
  16.         int broj_na_cifri = 0;
  17.        
  18.         while(broj > 0) {
  19.             int cifra = broj % 10;
  20.             obraten_broj = (obraten_broj * 10) + cifra;
  21.             broj /= 10;
  22.             broj_na_cifri++;
  23.         }
  24.        
  25.         if(obraten_broj % broj_na_cifri == 0) {
  26.             najgolem_broj = i;
  27.         }
  28.     }
  29.     printf("%d\n", najgolem_broj);
  30.     return 0;
  31.  
  32. }
  33.  
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement