我是 IT 专业的大三学生。我面临程序输出的问题。该程序的想法是我应该使用函数来读取 10 个元素的数组,然后获取元素的平均值,然后获取最大值和最小值。我有正确的最大值和最小值,但平均值显示奇怪的东西。请检查代码并告诉我应该做什么或以某种方式帮助我。
输出是(请注意,它请求的是 11 个数字而不是 10,如果我更改循环参数以让它只占用 10 个,那么它会显示奇怪的东西
enter the group of integers numbers
1
2
3
4
5
6
7
8
9
0
9
1 2 3 4 5 6 7 8 9 0the avg is 3.500000
9
1Press any key to continue . . .
// func-sortarray.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#define size 10
void readarray(int []);
void average(int []);
void printArray(int []);
void max(int []);
void min(int []);
int _tmain(int argc, _TCHAR* argv[])
{
int sarray[size];
readarray(sarray);
printArray(sarray);
average(sarray);
max(sarray);
min(sarray);
return 0;
}
void readarray(int a[])
{
printf("enter the group of integers numbers\n");
for (int i=0; i<=size-1 ;i++)
scanf("%d\n",&a[i]);
}
void average(int a[])
{
int i;
double avg;
double total = 0;
for (i=0; i <= size-1; i++)
{
total = total + a[i];
}
avg = total /size-1;
printf("the avg is %f\n",avg);
}
void printArray(int a[])
{
int j;
for (j = 0; j <= size - 1; j++)
printf( "%2d", a[ j ]);
}
void max(int a[])
{
int ma =a[0];
for (int j=0;j<size-1;j++)
{
if (ma<a[j])
ma=a[j];
}
printf("%d",ma);
}
void min(int a[])
{
int mi =a[0];
for (int j=0;j<size-1;j++)
{
if (mi>a[j])
mi=a[j];
}
printf("\n%d",mi);
}
提前谢谢