函数int find(int x0,int x1,int a[],int b[])的功能是找出a数组中在x0至x1之间所有能被3整除的数存入b数组中,返回b数组中元素的个数,并打印输出b数组元素。编写main函数,调用find函数求出15~50之间所有满足条件的整数。
#include<stdio.h>
#define N 100
int find(int x0,int x1,int a[],int b[]);
int main()
{
int a[N],b[N],count,i;
for (i=0;i<N;i++)
{
a[i]=i+1;
}
count=find(15,50,a,b);
for (i=0;i<count;i++)
{
printf("%d ",b[i]);
}
return 0;
}
int find(int x0,int x1,int a[],int b[])
{
int count=0,i;
for (i=0;i<N;i++)
{
if(a[i]>=x0 && a[i] <=x1 && a[i]%3==0)
{
b[count]=a[i];
count++;
}
}
return count;
}