Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main() {
- int x;
- int sum = 0;
- while(scanf("%d", &x)) {
- int broj = x;
- int ok = 1;
- while(broj > 9) {
- int poslednaa_cifra = broj % 10;
- int pretposledna_cifra = (broj / 10) % 10;
- if(poslednaa_cifra >= pretposledna_cifra) {
- ok = 0;
- }
- broj /= 10;
- }
- if(ok == 1) {
- sum += x;
- }
- }
- printf("%d\n", sum);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement