码迷,mamicode.com
首页 > 其他好文 > 详细

Problem P: 素数求和

时间:2018-10-28 19:16:22      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:for   col   ++   main   amp   素数   ret   ==   i++   

#include<stdio.h>
int main()
{
    int n,i,a,j,s=0;
    scanf("%d",&n);
    n>=3&&n<=100;
    for(i=1;i<=n;i++)
    {
     scanf("%d",&a);       
     for(j=2;j<=a/2;j++)
     {
         if(a%j==0)
         break;
     }
     if(j>a/2&&a!=1)
     {
         printf("%d ",a);
         s=s+a;
     }}
     printf("s=%d",s);
    return 0;
}

 

Problem P: 素数求和

标签:for   col   ++   main   amp   素数   ret   ==   i++   

原文地址:https://www.cnblogs.com/chenlong991223/p/9866470.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!