Pabon_SEC

Anagrammatic Primes

Apr 7th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int anaPrime[] = {2,3,5,7,11,13,17,31,37,71,73,79,97,113,131,199,311,337,373,733,919,991};
  6.  
  7. int main()
  8. {
  9.     long long n,i,num;
  10.  
  11.     while(scanf("%lld",&n)&&n)
  12.     {
  13.         num = 1;
  14.  
  15.         while(num<=n)
  16.         {
  17.             num*=10;
  18.         }
  19.  
  20.         bool dhukse = false;
  21.  
  22.         for(i=0;i<22;i++)
  23.         {
  24.             if(anaPrime[i]>n && anaPrime[i]<num)
  25.             {
  26.                 dhukse = true;
  27.  
  28.                 printf("%d\n",anaPrime[i]);
  29.  
  30.                 break;
  31.             }
  32.         }
  33.  
  34.         if(!dhukse)
  35.         {
  36.             puts("0");
  37.         }
  38.     }
  39.  
  40.     return 0;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment