Đăng nhập để hỏi chi tiết
0
0
mn giúp em với c++:)))))))))
Hãy luôn nhớ cảm ơn và vote 5*
nếu câu trả lời hữu ích nhé!
192
65
#include <bits/stdc++.h>
using namespace std;
#define int long long
bool prime(int x){
if(x<2)return false;
int sq=sqrt(x);
for(int i=2;i<=sq;i++)if(x%i==0)return false;
return true;
}
int palin(int x){
int ans=0;
while(x){
ans=ans*10+x%10;
x/=10;
}
return ans;
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin>>n;
if(prime(n)&&prime(palin(n)))cout<<1;
else cout<<0;
}
Hãy giúp mọi người biết câu trả lời này thế nào?
426
206
#include <bits/stdc++.h>
using namespace std;
int n, sdn;
bool csnt(int b)
{
if(b < 2) return false;
for(int a = 2; a <= sqrt(b); a++)
if(b % a == 0) return false;
return true;
}
int main()
{
cin >> n;
if(csnt(n))
{
while(n > 0)
{
sdn = sdn * 10 + n % 10;
n /= 10;
}
if(csnt(sdn)) cout << 1;
else cout << 0;
}
else cout << 0;
return 0;
}
$#khanhtaon$
Hãy giúp mọi người biết câu trả lời này thế nào?
Bảng tin