题解
2024-02-05 11:06:22
发布于:四川
8阅读
0回复
0点赞
#include <iostream>
#include <cmath>
using namespace std;
bool is_pal(int n) {
int t=0,m=n;
while(m){
t=t*10+m%10;
m/=10;
}
return tn;
}
bool is_prime(int n) {
if(n<=1){
return false;
}else{
for(int i=2;i<n;i++){
if(n%i0){
return false;
}
}
}
return true;
}
int main() {
int n;
cin >> n;
if(is_pal(n) && is_prime(n)) {
cout << "Yes";
}else {
cout << "No";
}
return 0;
}
全部评论 1
答案,不对可以投诉官方
2024-02-05 来自 四川
0
有帮助,赞一个