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

求和求到手软(字符串处理)

时间:2015-08-07 19:23:37      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:

 1 #include <iostream>
 2 #include <stdio.h>
 3 #include <math.h>
 4 #include <algorithm>
 5 using namespace std;
 6 char a[10010];
 7 int main()
 8 {
 9     int i,sum,t;
10     while(gets(a)){
11         sum=0;t=0;
12         for(i=0;a[i];i++){
13             if(a[i]== ){
14                 t+=sum;
15                 sum=0;
16             }
17             else
18                 sum=sum*10+(a[i]-0);
19         }
20         t+=sum;
21         printf("%d\n",t);
22     }
23     return 0;
24 }

 

求和求到手软(字符串处理)

标签:

原文地址:http://www.cnblogs.com/wangmengmeng/p/4711548.html

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