Advertisement
Josif_tepe

Untitled

Nov 22nd, 2022
865
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.37 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5.     int n;
  6.     while(scanf("%d", &n)) {
  7.         if(n >= 10) {
  8.             int pom = n;
  9.            
  10.             int zigzag = 0;
  11.             int ok = 1;
  12.             while(n > 0) {
  13.                 int cifra = n % 10;
  14.                 n /= 10;
  15.                 if(zigzag == 0) {
  16.                     if(cifra >= 5) {
  17.                         ok = 0;
  18.                     }
  19.                     zigzag = 1;
  20.                 }
  21.                 else if(zigzag == 1) {
  22.                     if(cifra < 5) {
  23.                         ok = 0;
  24.                     }
  25.                     zigzag = 0;
  26.                 }
  27.             }
  28.             n = pom;
  29.             zigzag = 0;
  30.             int ok2 = 1;
  31.             while(n > 0) {
  32.                 int cifra = n % 10;
  33.                 n /= 10;
  34.                 if(zigzag == 0) {
  35.                     if(cifra < 5) {
  36.                         ok2 = 0;
  37.                     }
  38.                     zigzag = 1;
  39.                 }
  40.                 else if(zigzag == 1) {
  41.                     if(cifra >= 5) {
  42.                         ok2 = 0;
  43.                     }
  44.                     zigzag = 0;
  45.                 }
  46.             }
  47.             if(ok == 1 || ok2 == 1) {
  48.                 printf("%d\n", pom);
  49.             }
  50.            
  51.            
  52.         }
  53.     }
  54.    
  55.     return 0;
  56.  
  57. }
  58.  
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement