ACM-Draw Something

来源:互联网 发布:mac地址的组成 编辑:程序博客网 时间:2024/05/08 16:42
描述
 
Wangpeng is good at drawing. Now he wants to say numbers like “521” to his girlfriend through the game draw something.
Wangpeng can’t write the digit directly. So he comes up a way that drawing several squares and the total area of squares is the number he wants to say.
Input all the square Wangpeng draws, what’s the number in the picture?
 

输入
There are multiple test cases.
For each case, the first line contains one integer N(1≤N≤100) indicating the number of squares.
Second line contains N integers ai(1≤ai≤100)represent the side length of each square. No squares will overlap.
Input ends with N = 0
输出
For each case, output the total area in one line
样例输入
41 2 3 433 3 30
样例输出
3027


代码:

01.#include<iostream>
02.usingnamespace std;
03.intmain()
04.{
05.intt,i;
06.while(cin>>t,t)
07.{
08.intsum=0,n,a[100]={0};
09. 
10.for(i=0;i<t;i++)
11.{
12.cin>>n;
13.a[i] = n;
14.}
15.for(i = 0;i<t;i++)
16.sum+=a[i]*a[i];
17.cout<<sum<<endl;
18.}
19.}


0 0