Question one hundred and ten: sequence summation

Source: Internet
Author: User

[Plain] Description
 
 
Search for Series 1 2 4 7 11 16 22 ...... The sum of the First n.
 
 
Input
 
 
There are multiple groups of input data, each of which occupies one row.
 
The input data is an integer of n, 0 <n <1000.
 
 
Output
 
 
Each group outputs a row and each row has an integer, that is, the sum of the First n of the series.
 
 
Sample Input
 
 
3
4
 
 
Sample Output
 
 
7
14

Description


Search for Series 1 2 4 7 11 16 22 ...... The sum of the First n.


Input


There are multiple groups of input data, each of which occupies one row.

The input data is an integer of n, 0 <n <1000.


Output


Each group outputs a row and each row has an integer, that is, the sum of the First n of the series.


Sample Input


3
4


Sample Output


7
14
 


[Plain] # include <stdio. h>
 
Int main ()
{
Int I;
Int num;
Int sum;
Int array [1001];
 
While (scanf ("% d", & num )! = EOF & (num> 0 & num <1000 ))
{
Sum = 0;
Array [0] = 1;
For (I = 1; I <num; I ++)
{
Array [I] = array [I-1] + I;
}
 
For (I = 0; I <num; I ++)
{
Sum + = array [I];
}
Printf ("% d \ n", sum );
}

Return 0;
}

# Include <stdio. h>

Int main ()
{
Int I;
Int num;
Int sum;
Int array [1001];

While (scanf ("% d", & num )! = EOF & (num> 0 & num <1000 ))
{
Sum = 0;
Array [0] = 1;
For (I = 1; I <num; I ++)
{
Array [I] = array [I-1] + I;
}

For (I = 0; I <num; I ++)
{
Sum + = array [I];
}
Printf ("% d \ n", sum );
}
 
Return 0;
}

 

 


 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.