Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
7397 | 张文曦 | 哥德巴赫猜想 | C++ | Wrong Answer | 12 MS | 252 KB | 759 | 2025-04-20 11:53:18 |
#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; bool isprime(int x){ if(x<2) return false; for(int i=2;i<=sqrt(x);i++){ if(x%i==0) return false; return true; } } int main(){ int a=1; for(int i=6;i<=100;i++){ if(i%2==0){ cout<<i<<'='; a=0; for(int j=1;j<=i;j++){ if(isprime(a)&&isprime(i-a)){ cout<<a<<'+'<<i-a; break; } a++; } cout<<endl; } } return 0; }
------Input------
0
------Answer-----
6=3+3 8=3+5 10=3+7 12=5+7 14=3+11 16=3+13 18=5+13 20=3+17 22=3+19 24=5+19 26=3+23 28=5+23 30=7+23 32=3+29 34=3+31 36=5+31 38=7+31 40=3+37 42=5+37 44=3+41 46=3+43 48=5+43 50=3+47 52=5+47 54=7+47 56=3+53 58=5+53 60=7+53 62=3+59 64=3+61 66=5+61 68=7+61 70=3+67 72=5+67 74=3+71 76=3+73 78=5+73 80=7+73 82=3+79 84=5+79 86=3+83 88=5+83 90=7+83 92=3+89 94=5+89 96=7+89 98=19+79 100=3+97
------Your output-----
6=3+3 8=3+5 10=3+7 12=3+9 14=3+11 16=3+13 18=3+15 20=3+17 22=3+19 24=3+21 26=3+23 28=3+25 30=3+27 32=3+29 34=3+31 36=3+33 38=3+35 40=3+37 42=3+39 44=3+41 46=3+43 48=3+45 50=3+47 52=3+49 54=3+51 56=3+53 58=3+55 60=3+57 62=3+59 64=3+61 66=3+63 68=3+65 70=3+67 72=3+69 74=3+71 76=3+73 78=3+75 80=3+77 82=3+79 84=3+81 86=3+83 88=3+85 90=3+87 92=3+89 94=3+91 96=3+93 98=3+95 100=3+97