1 条题解
-
1
暴力判质数即可:
#include<bits/stdc++.h> using namespace std; int n,a[101]; bool prime(int x){ if(x<2) return false; for(int i=2;i*i<=x;i++){ if(x%i==0) return false; } return true; } int main(){ cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; if(prime(a[i])) cout<<a[i]<<" "; } cout<<endl; }
- 1
信息
- ID
- 101
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 2
- 标签
- (无)
- 递交数
- 1032
- 已通过
- 6
- 上传者