| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 725 人关注过本帖
标题:程序设计思路怎么写
取消只看楼主 加入收藏
晴宝狂想曲
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
快速回复:程序设计思路怎么写
数据加载中...
 
   



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

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