大数加法-poj-1503

简介: poj-1503-Integer Inquiry Description One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of powers of 3 to go from 0 to 333 and he explored taking vari

poj-1503-Integer Inquiry

Description

One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of powers of 3 to go from 0 to 333 and he explored taking various sums of those numbers. 

``This supercomputer is great,'' remarked Chip. ``I only wish Timothy were here to see these results.'' (Chip moved to a new apartment, once one became available on the third floor of the Lemon Sky apartments on Third Street.) 

input

The input will consist of at most 100 lines of text, each of which contains a single VeryLongInteger. Each VeryLongInteger will be 100 or fewer characters in length, and will only contain digits (no VeryLongInteger will be negative). 

The final input line will contain a single zero on a line by itself. 

Output

Your program should output the sum of the VeryLongIntegers given in the input. 

Sample Input

123456789012345678901234567890

123456789012345678901234567890

123456789012345678901234567890

0

Sample Output

370370367037037036703703703670

微笑大意:给你若干行大数,求和。输入数据以单个的‘0’结尾。

提醒:题目特别坑,所给数据有前导的0,如9=00009.

代码亮点:string::iterator 的使用 及 string::erase(it).

分析:a[]存储大数。a[0]表示这个数的位数。a[1]a[2]a[3]表示个位十位百位...   ;

 str[i]-'0' 才是数字;

 

 

目录
相关文章
|
6月前
|
算法
Highways(POJ—2485)
Highways(POJ—2485)
|
6月前
|
算法 数据建模
Poj 3169(差分约束系统)
Poj 3169(差分约束系统)
34 0
poj 1455
Description n participants of > sit around the table. Each minute one pair of neighbors can change their places.
618 0
POJ-1003-hangover
Description How far can you make a stack of cards overhang a table? If you have one card, you can create a maximum overhang of half a card length.
767 0