Advertisement
Josif_tepe

Untitled

Nov 14th, 2022
815
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.52 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int main() {
  6.     int x;
  7.     int sum = 0;
  8.     while(scanf("%d", &x)) {
  9.         int broj = x;
  10.         int ok = 1;
  11.         while(broj > 9) {
  12.             int poslednaa_cifra = broj % 10;
  13.             int pretposledna_cifra = (broj / 10) % 10;
  14.             if(poslednaa_cifra >= pretposledna_cifra) {
  15.                 ok = 0;
  16.             }
  17.             broj /= 10;
  18.         }
  19.         if(ok == 1) {
  20.             sum += x;
  21.         }
  22.     }
  23.     printf("%d\n", sum);
  24.     return 0;
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement