Advertisement
Josif_tepe

Untitled

Nov 23rd, 2022
903
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.71 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.            
  9.             int pom = n;
  10.             int zigzag = 0;
  11.             int ok = 1;
  12.             while(pom > 0) {
  13.                 int cifra = pom % 10;
  14.                 pom /= 10;
  15.                 if(zigzag == 0) {
  16.                     if(cifra >= 5) {
  17.                        
  18.                     }
  19.                     else {
  20.                         ok = 0;
  21.                     }
  22.                     zigzag = 1;
  23.                 }
  24.                 else if(zigzag == 1) {
  25.                     if(cifra < 5) {
  26.                        
  27.                     }
  28.                     else {
  29.                         ok = 0;
  30.                     }
  31.                     zigzag = 0;
  32.                 }
  33.             }
  34.             pom = n;
  35.             zigzag = 0;
  36.             int ok2 = 1;
  37.             while(pom > 0) {
  38.                 int cifra = pom % 10;
  39.                 pom /= 10;
  40.                 if(zigzag == 0) {
  41.                     if(cifra < 5) {
  42.                        
  43.                     }
  44.                     else {
  45.                         ok2 = 0;
  46.                     }
  47.                     zigzag = 1;
  48.                 }
  49.                 else if(zigzag == 1) {
  50.                     if(cifra >= 5) {
  51.                        
  52.                     }
  53.                     else {
  54.                         ok2 = 0;
  55.                     }
  56.                     zigzag = 0;
  57.                 }
  58.                
  59.             }
  60.            
  61.             if(ok == 1 || ok2 == 1) {
  62.                 printf("%d\n", n);
  63.             }
  64.            
  65.            
  66.         }
  67.     }
  68.  
  69.     return 0;
  70.  
  71. }
  72.  
  73. /*
  74.  **/
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement