0 of 1 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 1 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#include <iostream> using namespace std; // 函数声明 double getAverage(int *arr, int size); int main (){ int balance[5] = {18, 2, 3, 17, 50}; double avg; avg = getAverage( balance, 5 ) ; cout << "Average value is: " << avg << endl; return 0; } double getAverage(int *arr, int size){ int i; double avg,sum=0; for (i = 0; i < size; ++i){ sum += arr[i]; } avg = sum/size; return avg; } |
以上程序运行结果为?