输入 n以内的所有素数之和

#include

int main()
{
    int i=0,j=0,sum=0,n=0;
    scanf("%d",&n);
    for(i=2;i

你可能感兴趣的:(算法,数据结构)