标题:[求助]程序错在哪?????
取消只看楼主
七号仔
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-5-24
 问题点数:0 回复次数:1 
[求助]程序错在哪?????

求各位大虾,小弟的程序错在哪里,感谢了。。。


/*随意输入N个数,求最大值,最小值,和平均值。*/
#include<stdio.h>
void main()
{
int n,i,max,min,total,a[50];
float average;
printf("how many numbers do you want to deal with?(n<=50) ");
scanf("%d",&n);
for(i=0;i<n;i++)
{
printf("the %dth number is : ",i+1);
scanf("%d",&a[i]);
total+=a[i];
if(i==0)
{
max=a[i];
min=a[i];
}
else
{
max=a[i]>a[i-1]?a[i]:a[i-1];
min=a[i]<a[i-1]?a[i]:a[i-1];
}
}
average=total/n;
printf("\nthe max is %d\nthe min is %d\nthe average is %.2f",max,min,average);
}

搜索更多相关主题的帖子: include 平均值 最大值 color 
2007-08-13 23:06
七号仔
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-5-24
得分:0 
非常感谢!
2007-08-14 11:30



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




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

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