0
已解决
朱睿辰
资深守护
资深守护
题目链接: 酷町堂:3823
0分代码
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
int f(int n){
int m=0;
if(n==1){
return false;
}
else{
for(int i=2;i<=sqrt(n);i++){
if(n%i==0){
return false;
}
}
return true;
}
}
int main(){
int a,b=0;
cin>>a;
for(int i=1;i<=a/2;i++){
if(f(i)==0&&f(a-i)==0){
b+=1;
}
}
cout<<b;
return 0;
}