1015. reversible PRIMES (20)-pat

Source: Internet
Author: User

1015. reversible PRIMES (20)

AReversible primeIn any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a reversible prime because its reverse 37 is also a prime.

Now given any two positive integers n (<105) and D (1 <D <= 10), you are supposed to tell if n is a reversible prime with Radix D.

Input specification:

The input file consists of several test cases. Each case occupies a line which contains two integers n and D. The input is finished by a negative n.

Output specification:

For each test case, print in one line "yes" if n is a reversible prime with Radix D, or "no" if not.

Sample input:

73 1023 223 10-2

Sample output:

YesYesNo
Recommendation index ※
The consciousness of the question is that there is a 10-digit number N, which allows you to determine the n 'After Turning Based on D and whether N and n' are prime numbers. Note that the original N is not converted in hexadecimal format.
#include<iostream>#include<math.h>using namespace std;long resver_num(int n,int rd){long x;x=n%rd;while(n/rd>0){n=n/rd;x=x*rd+n%rd;}return x; }bool is_prime(long x){int i;if(x==1)return false;for(i=2;i<=pow(x,0.5);i++){if(x%i==0)return false;}return true;}int main(){int n,d;long x,y;cin>>n;while(n>=0){cin>>d;y=resver_num(n,d);if(is_prime(n)&&is_prime(y))cout<<"Yes"<<endl;elsecout<<"No"<<endl;cin>>n;}return 0;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.