Problem a: 函数的指针参数:计算累加和

Problem a: 函数的指针参数:计算累加和

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 80  Solved: 65
[Submit] [Status] [Web Board] [Creator:]

Description

使用自定义函数int sum(int a[], int n);计算数组a中各元素的累加和。

函数的参数:a为数组(指针),n为数组中元素的个数 

函数返回值:累加总和 

Input

一组整数(不超过10个),每个整数的绝对值不超过1000,读取到输入结束 

Output

输出累加和

Sample Input Copy

1 2

1 4 6 9

Sample Output Copy

3

20

HINT

main函数的定义如下
#include<stdio.h> 
int main() 

    int a[10],n=0; 
    while( scanf("%d",&a[n])==1 ) n++; 
    printf("%d\n",sum(a,n) );