我需要编写一个程序,传递一个 int 数组及其大小,然后打印出高于平均水平的数字。谁能帮我解决这个问题?我坐在这里想知道它到底在问什么,而且我对编程还是很陌生,所以我不知道该怎么做。对不起,我听起来很无能为力,但我只是感到困惑。感谢任何可以提供帮助的人。到目前为止,这就是我所拥有的:
这是更新的代码,但我仍然无法弄清楚为什么没有显示多个平均值,或者如何使输出值正确。
编辑:将 average() 函数中的几个 int 值更改为浮点数,但最后的总值仍然存在问题
#include <iostream>
using namespace std;
int average(int values[],int size);
int main(){
int size;
int values[] = {1,2,3,4,5,6};
cout << "Please input the size of the array" << endl;
cin >> size;
int output = average(values, size);
if(values[size]>output){
cout << "The values above average are: " << output << endl;
}
return 0;
}
int average(int values[],int size){
float temp=0.0;
for(int i=0;i<size;i++){
temp += values[i];
}
float end=temp/size;
return end;
}