[水题]hdu 1262 寻找素数对

hdu 1262 寻找素数对

题意:

任意取出一个偶数,来寻找两个值最相近的素数,其和等于该偶数

思路:

水题,判断素数

但还是wa了一次,这两个素数可以是一样的……比如 6 = 3 + 3;

代码:

#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

bool judge(int x){
    if(x < 2) return 0;
    else if(x == 2) return 0;
    else{
        int tmp = sqrt(x);
        for(int i=2; i<=tmp; i++)
            if(x % i == 0) return 0;
    }
    return 1;
}
int main(){
    int n, mid;
    while(~scanf("%d", &n)){
        mid = n/2;
        for(int i=0; i


反思:

仔细一点

你可能感兴趣的:(无算法)