题解
2024-02-02 09:54:26
发布于:北京
14阅读
0回复
0点赞
#include <iostream>
#include <cmath>
using namespace std;
bool is_pal(int n) {
int s=0,t=n;
while(t>0){
s=s*10+t%10;
t=t/10;
}
if(s==n) return true;
else return false;
}
bool is_prime(int n) {
for(int i=2;i<=n-1;i++){
if(n%i==0) return false;
}
return true;
}
int main() {
int n;
cin >> n;
if(is_pal(n) && is_prime(n)) {
cout << "Yes";
}else {
cout << "No";
}
return 0;
}
这里空空如也
有帮助,赞一个