Advertisement
Josif_tepe

Untitled

Nov 13th, 2022
718
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.88 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 cetvrta_cifra = N % 10;
  9.     int treta_cifra = (N / 10) % 10;
  10.     int vtora_cifra = (N / 100) % 10;
  11.     int prva_cifra = N / 1000;
  12.    
  13.     int brojac = 0;
  14.     if(prva_cifra == 5) {
  15.         prva_cifra = 6;
  16.         brojac++;
  17.     }
  18.     if(vtora_cifra == 5) {
  19.         vtora_cifra = 6;
  20.         brojac++;
  21.     }
  22.     if(treta_cifra == 5) {
  23.         treta_cifra = 6;
  24.         brojac++;
  25.     }
  26.     if(cetvrta_cifra == 5) {
  27.         cetvrta_cifra = 6;
  28.         brojac++;
  29.     }
  30.    
  31.     if(brojac < 2) {
  32.         printf("ERROR");
  33.         return 0;
  34.     }
  35.     int kolega = 1000 * prva_cifra + 100 * vtora_cifra + 10 * treta_cifra + cetvrta_cifra;
  36.     printf("%d\n", kolega);
  37.    
  38.     float procent = (100 * kolega - 100 * N) / N;
  39.     printf("%f%%\n", procent);
  40.     return 0;
  41. }
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement