6-3 简单求和
题目
https://pintia.cn/problem-sets/14/problems/735
本题要求实现一个函数,求给定的N
个整数的和。
程序样例
1 |
|
关键代码
1 | int Sum ( int List[], int N ){ |
https://pintia.cn/problem-sets/14/problems/735
本题要求实现一个函数,求给定的N
个整数的和。
1 | #include <stdio.h> |
1 | int Sum ( int List[], int N ){ |