Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100749 Kevin 哥德巴赫猜想 C++ Accepted 2 MS 268 KB 350 2024-12-12 15:08:19

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; bool ss(int x){ if(x<=1) return false; for(int i=2;i<=sqrt(x);i++){ if(x%i==0){ return false; } } return true; } int main(){ for(int i=6;i<=100;i+=2){ for(int j=1;j<=i;j++){ if(ss(j)&&ss(i-j)){ cout<<i<<"="<<j<<"+"<<i-j<<endl; break; } } } return 0; }