标签:style blog http ar color os sp java for
描述
在墙角堆放着一堆完全相同的正方体小木块,如下图所示:
因为木块堆得实在是太有规律了,你只要知道它的层数就可以计算所有木块的数量了。
现在请你写个程序 给你任一堆木块的层数,求出这堆木块的数量.
2
1
5
1
35
1 import java.util.Arrays; 2 import java.util.Scanner; 3 4 public class Main { 5 public static void main(String[] args) { 6 Scanner scanner=new Scanner(System.in); 7 int T; 8 int n; 9 int temp; 10 int sum; 11 int i; 12 13 T=scanner.nextInt(); 14 while(true){ 15 if(T==0) 16 break; 17 T--; 18 19 n=scanner.nextInt(); 20 21 sum=0; 22 temp=0; 23 for(i=1;i<=n;i++){ 24 temp+=i; 25 sum+=temp; 26 } 27 System.out.println(sum); 28 } 29 } 30 }
标签:style blog http ar color os sp java for
原文地址:http://www.cnblogs.com/zqxLonely/p/4132616.html