标题:程序设计思路怎么写
取消只看楼主
晴宝狂想曲
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2014-6-4
结帖率:0
 问题点数:0 回复次数:1 
程序设计思路怎么写
#include <stdlib.h>
#include <stdio.h>
#define N 10
double fun(double *x) //double *x等价于double x[]
{ int i, j; double s, av, y[N];
s=0;
for(i=0; i<N; i++) s=s+x[i];
av=s/N;
for(i=j=0; i<N; i++)
if( x[i]>av ){
y[j++]=x[i]; x[i]=-1;}
for(i=0; i<N; i++)
if( x[i]!= -1) y[j++]=x[i];
for(i=0; i<N; i++)x[i] = y[i];
return av;
}
void main()
{ int i; double x[N];
for(i=0; i<N; i++){ x[i]=rand()%50; printf("%4.0f ",x[i]);}
printf("\n");
printf("\nThe average is: %f\n",fun(x));
printf("\nThe result :\n",fun(x));
for(i=0; i<N; i++) printf("%5.0f ",x[i]);
printf("\n");
}
搜索更多相关主题的帖子: 程序设计 average include double return 
2014-06-04 21:22
晴宝狂想曲
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2014-6-4
得分:0 
回复 2 楼 wp231957
老师要思路,怎么写?
2014-06-05 17:29



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-432486-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.069660 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved