008.数列求和

简介: 008.数列求和
#include <stdio.h>
main()
{
  int i,j,n;
  long sum=0,temp=0;
  printf("Please input a number to n:\n");
  scanf("%d",&n);
  if(n<1)
  {
    printf("The n must no less than 1!\n");
    return;
  }
  for(i=1;i<=n;i++)
  {
    temp=0;
    for(j=1;j<=i;j++)
      temp+=j;
    sum+=temp;
  }
  printf("The sum of the sequence(%d) is %d\n",n,sum);
  getchar();
  getchar();
}
相关文章
|
3月前
|
Python
累加求和 1~ n求和
累加求和 1~ n求和
78 4
|
4月前
|
C++
643. 子数组最大平均数 I(C++)
643. 子数组最大平均数 I(C++)
|
6月前
27.数列1,2,2,3,3,3,4,4,4,4,5,……
27.数列1,2,2,3,3,3,4,4,4,4,5,……
53 0
|
6月前
|
测试技术
643.子数组最大平均数
643.子数组最大平均数
27 0
|
机器学习/深度学习 Python
Python实现数列求和
Python实现数列求和
165 0