编写程序,求出1,1+2,1+2+3,……数列中前n项的值

问题描述:

编写程序,求出1,1+2,1+2+3,……数列中前n项的值

#include
int sum(int n)
{
int j,s=0;
for(j=1;j