第1关:求和 题目描述:给你一个n,要求你编写一个函数求1+2+…+n. #include<stdio.h> //编写函数 /*********Begin*********/ int Sum(int a) { int i,sum=<