编写函数,将一维数组中所有的合数都用 0 替换。数组中数据不超过1000个。
#include <stdio.h>
#include <math.h>
int heshu(int a[],int n)
{
//在这里输入函数体
}
int main()
{
int l;
int k,num[1000];
scanf("%d",&l);
for(k=0;k<l;k++)
{
scanf("%d",&num[k]);
}
heshu(num,l);
for(k=0;k<l;k++)
{
printf("%d ",num[k]);
}
return 0;
}