编程介的小学生
2019-04-28 16:54多行计算包含的最大求和?如何利用C语言的程序的编写的办法?
Problem Description
We once did a lot of recursional problem . I think some of them is easy for you and some if hard for you.
Now there is a very easy problem . I think you can AC it.
We can define sum(n) as follow:
if i can be divided exactly by 3 sum(i) = sum(i-1) + i*i*i;else sum(i) = sum(i-1) + i;
Is it very easy ? Please begin to program to AC it..-_-
Input
The input file contains multilple cases.
Every cases contain only ont line, every line contains a integer n (n<=100000).
when n is a negative indicate the end of file.
Output
output the result sum(n).
Sample Input
1
2
3
-1
Sample Output
1
3
30
- 点赞
- 回答
- 收藏
- 复制链接分享
0条回答
为你推荐
- Dev-C++中一个C语言程序的小问题
- c语言
- 4个回答
- 怎me写sql,可以将weight列按年份求和?
- sql
- oracle
- mysql
- 1个回答
- 按照最大数对序列的排序的算法,求和以后再排序,怎么用C语言谢谢
- r语言
- Golang
- erlang
- 1个回答
- 计算求和的范围是否在给定的范围之内,并且输出,采用C语言计算
- r语言
- Golang
- erlang
- 1个回答
- 平方求和的计算公式怎么利用C语言编写实现的?请问思路办法
- r语言
- Golang
- erlang
- 3个回答
换一换