ZOJ 1292 解题报告

ZOJ 1292 解题报告
利用 大数类非常简单地解决.
Code
 1#include "BigInteger.h"
 2#include <iostream>
 3using namespace std;
 4
 5int _tmain(int argc, _TCHAR* argv[])
 6{
 7    int cases;
 8    cin >> cases;
 9    while(cases)
10    {
11        string input;
12        BigInteger result(0);
13        while(cin >> input && input != "0")
14        {
15            result = result + BigInteger(input);
16        }

17        cout << result << endl;
18        if(cases != 1)
19            cout << endl;
20        --cases;
21    }

22    return 0;
23}

24

你可能感兴趣的:(ZOJ 1292 解题报告)