题解 1022: [编程入门]筛选N以内的素数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

筛选N以内的素数

摘要:#include<iostream> using namespace std; int main() { int n; cin >> n; bool isPrimer[1000];……