设为首页 加入收藏

TOP

uva 424
2014-11-23 19:52:32 来源: 作者: 【 】 浏览:8
Tags:uva 424

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 
#include 
#define N 100
char str[N+10][N+10];
char str_sum[N+10];
int s1[N+10][N+10];
int sum[N+10];

int main()
{
     int i = 0,j,k,len,flag;
     while(gets(str[i]))
     {
          if(str[i][0] == '0' && str[i][1] == '\0')
          {
               break;
          }
          len = strlen(str[i]);
          j = 0;
          for(k = len - 1; k >= 0; k--)
          {
               s1[i][j++] = str[i][k] - '0';
          }
          for(j = 0; j < N+10; j++)
          {
               sum[j] += s1[i][j];          
          }
          i++;
     } 
     for(i = 0; i < N + 10; i++)
     {
          if(sum[i] >= 10)
          {
               flag = sum[i];
               sum[i] = flag%10;
               sum[i+1] += flag/10;
          }
     }
     flag = 0;
     for(i=N+5; i>=0; i--)
     {
          if(flag)
          {
               printf("%d", sum[i]);
          }
          else if(sum[i])
          {
               printf("%d", sum[i]);
               flag = 1;
          }
     }
     if(!flag)
     {
          printf("0");
     }
     printf("\n");
     return 0;
}

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇uva 10106 下一篇uva 537

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·C语言中,“指针”用 (2025-12-26 15:20:18)
·在c语言的指针运算中 (2025-12-26 15:20:15)
·C语言-函数指针与函 (2025-12-26 15:20:12)
·求navicat for mysql (2025-12-26 13:21:33)
·有哪位大哥推荐一下m (2025-12-26 13:21:30)