Advertisement
Josif_tepe

Untitled

Nov 15th, 2022
584
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.58 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 prethoden_broj=0;
  9.     int najmala_razlika = 2000000000;
  10.     // prethoden_broj = 5
  11.     //najgolema_razlika = 5
  12.     for(int i = 0; i < n; i++) { // i = 4
  13.         int x;
  14.         scanf("%d", &x);
  15.         if(i > 0) {
  16.             if(najmala_razlika > x - prethoden_broj) {
  17.                 najmala_razlika = x - prethoden_broj;
  18.             }
  19.         }
  20.         prethoden_broj = x;
  21.     }
  22.     printf("%d", najmala_razlika);
  23.    
  24.     return 0;
  25.  
  26. }
  27.  
  28. /*
  29. 2
  30. J J K Q
  31. A K Q K
  32.  
  33.  **/
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement