求200以内素数和问题,做对给加分-我就剩5分了全加了
四、请编写一个函数fff,它的功能是:求出200以内所有素数之和。注意:部分源程序(proc4.c)已给出,
请勿改动主函数main()和已给出的源程序,仅在fff函数中的花括号内填入你编写地若干语句。
========================
#include "math.h"
#include "stdio.h"
int fff(int a,int b)
{
}
main()
{int a,b,sum;
FILE *p;
if ((p=fopen("file2.txt","w"))==NULL)
{printf("this file can not open\n");
exit(0);
}
a=2;
b=200;
sum=fff(a,b);
printf("%d\n",sum);
fprintf(p,"%d\n",sum);
fclose(p);
}
========================
[ 本帖最后由 liu800519 于 2010-10-16 18:03 编辑 ]