标签:style blog io color os for sp strong 数据
描述
现在给你N个数(0<N<1000),现在要求你写出一个程序,找出这N个数中的所有素数,并求和。
3 5 1 2 3 4 5 8 11 12 13 14 15 16 17 18 10 21 22 23 24 25 26 27 28 29 30
10 41 52
#include<iostream> using namespace std; int main() { int m,n,a,b=0,s=0; cin>>m; while(m--) { cin>>n; while(n--) { cin>>a; for(int i=2;i<a;i++) { if(a%i!=0) b++; } if(b==a-2) s=s+a; b=0; } cout<<s<<endl; s=0; } return 0; }
标签:style blog io color os for sp strong 数据
原文地址:http://www.cnblogs.com/imwtr/p/4069431.html