码迷,mamicode.com
首页 > 其他好文 > 详细

ACM-Draw Something

时间:2015-05-29 11:59:36      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

描述
 
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
样例输入
4
1 2 3 4
3
3 3 3
0
样例输出
30
27


代码:

01.#include<iostream>
02.using namespace std;
03.int main()
04.{
05.int t,i;
06.while(cin>>t,t)
07.{
08.int sum=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.}


ACM-Draw Something

标签:

原文地址:http://blog.csdn.net/u012701023/article/details/46227827

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!