c语言

来源:互联网 发布:淘宝网返利链接的制作 编辑:程序博客网 时间:2024/06/07 20:22
#include <stdbool.h> 
  /* C99 only */
  #include <stdio.h>
?
  int main(void)
  {
  
  bool digit_seen[10] = {false};
 
  int digit;
 
  long n;
?
  printf("Enter a number: ");
  
  scanf("%ld", &n);
 
  while (n > 0) {
   
        digit = n % 10;
  
          if (digit_seen[digit])
      
              break;
    
              digit_seen[digit] = true;
    
              n /= 10;
  }


              if (n > 0)
 
                  printf("Repeated digit\n");
              else
    
                  printf("No repeated digit\n");
?
    return 0;
}
0 0