Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95778 | 任斌 | 哥德巴赫猜想 | C++ | Compile Error | 0 MS | 0 KB | 385 | 2024-11-02 10:55:53 |
#include<bits/std++.h> using namespace std; bool isPrime(int n){ for(int i=2;i*i<=n;i++){ if(n%i==0) return false; } return true; } int main() { for(int i=6;i<=100;i+=2) for(int j=2;j<=i/2;j++) if(isPrime(j) && isPrime(i-j){ cout<<i<<"="<<j<<"+"<<i-j<<endl; break; } return 0; }
Main.cc:1:23: fatal error: bits/std++.h: No such file or directory #include ^ compilation terminated.