标签:style blog http io color os for sp strong
描述
在墙角堆放着一堆完全相同的正方体小木块,如下图所示:
因为木块堆得实在是太有规律了,你只要知道它的层数就可以计算所有木块的数量了。
现在请你写个程序 给你任一堆木块的层数,求出这堆木块的数量.
2 1 5
1 35
#include <iostream> #include <string> using namespace std; int main() { int n,m; int b; cin>>n; while(n--){ cin>>m; b = 0; for(int i=m;i>=1;i--) for(int j=1;j<=i;j++) b +=j; cout<<b <<endl; } return 0; }
标签:style blog http io color os for sp strong
原文地址:http://www.cnblogs.com/imwtr/p/4069549.html