zoukankan      html  css  js  c++  java
  • POJ1503——字符串——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
    大意:高精度加法
    #include<cstdio>
    #include<cstring>
    using namespace std;
    int sum[150];
    void add(char *a)
    {
      int len = strlen(a);
      int k = 1;
      for(int i = len - 1 ;i >= 0;i--){
            sum[k] += (a[i] - '0');
            sum[k+1] += sum[k]/10;
            sum[k] %= 10;
            k++;
      }
    }
     int main()
     {
         char a[105][105];
         for(int i = 0 ; ; i++){
            scanf("%s",a[i]);
            int n = strlen(a[i]);
            if(n == 1 && a[i][0] == '0')
                break;
            add(a[i]);
         }
        int flag = 0;
        for(int i = 110; i >= 1 ;i--){
          if(sum[i] == 0 && flag == 0)
            continue;
          else {
                flag = 1;
          printf("%d",sum[i]);
         }
        }
        return 0;
     }
    View Code
     
  • 相关阅读:
    js 表格上下移动 javascript实现
    存储过程-----DECLARE---实用注意事项
    储存过程-原理、语法、函数详细说明
    第九章 接口
    第八章 多态
    第七章 类复用
    synchronized ---- 作用
    集合框架综述
    java static代码块执行时机
    状态模式
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4372688.html
Copyright © 2011-2022 走看看