c语言:这个怎么做?? 帮帮忙哦! 先谢了!

2.打开程序Cprog012.C,完成其中的函数fun2(inta[],intn,intb[],intc[]),实现:(1)将数组a中大于-20的元素,依次存放到数组b中... 2. 打开程序Cprog012.C,完成其中的函数fun2(int a[ ], int n, int b[ ], int c[ ]),实现:
(1)将数组a中大于-20的元素,依次存放到数组b中;
(2)将数组b中的元素按照从小到大的顺序存放到数组c中;
(3)函数返回数组b中的元素个数。
#include <string.h>
#include <conio.h>
#include <math.h>
#include <stdio.h>
int fun2(int a[],int n,int b[],int c[])
{
/**/

/**/
}
void main()
{ int n = 10, i, nb;
int aa[10] = {12, -10, -31, -18, -15, 50, 17, 15, -20, 20};
int bb[10], cc[10];
clrscr();
printf("There are %2d elements in aa.\n", n);
printf("They are: ");
for(i=0; i<n; i++) printf("%6d", aa[i]);
printf("\n");
nb = fun2(aa, n, bb, cc);
printf("Elements in bb are: ");
for (i=0; i<nb; i++) printf("%6d", bb[i]);
printf("\n");
printf("Elements in cc are: ");
for(i=0; i<nb; i++) printf("%6d", cc[i]);
printf("\n");
printf("There are %2d elements in bb.\n", nb);
展开
 我来答
折咏志0hfd5a
2012-04-25 · TA获得超过279个赞
知道小有建树答主
回答量:182
采纳率:0%
帮助的人:245万
展开全部
VS2005编译通过,希望对你有帮助!
int fun2(int a[],int n,int b[],int c[])
{
int i,j,temp;
int index=0;

for(i = 0; i < n; i++)
{
if(a[i] > -20)
{
c[index]=b[index]=a[i];
index++;
}
}

for(i=0;i<index;i++)
{
for (j=i+1;j<index;j++)
{
if(c[i]>c[j])
{
temp=c[i];
c[i]=c[j];
c[j]=temp;
}
}
}

return index;
}
电子发烧友爱好者
2012-04-25 · TA获得超过187个赞
知道答主
回答量:452
采纳率:0%
帮助的人:130万
展开全部
帮顶、、、、、、、、、、
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ygz055
2012-04-25
知道答主
回答量:21
采纳率:0%
帮助的人:3.2万
展开全部
不知
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式