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

题目1003:A+B(按逗号分隔的A+B)

时间:2017-04-15 00:21:27      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:result   .cpp   res   strong   ++   for   git   代码   blog   

题目链接:http://ac.jobdu.com/problem.php?pid=1003

 

详解链接:https://github.com/zpfbuaa/JobduInCPlusPlus

 

参考代码:

//
//  1003 A+B.cpp
//  Jobdu
//
//  Created by PengFei_Zheng on 2017/4/14.
//  Copyright © 2017年 PengFei_Zheng. All rights reserved.
//
 
#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <string.h>
#include <cmath>
 
using namespace std;
 
char a[21],b[21];
int num1,num2;
 
int main(){
    while(scanf("%s%s",a,b)!=EOF){
        int lena = (int)strlen(a);
        int lenb = (int)strlen(b);
        num1 = num2 = 0;
        int size1 = 0;
        int size2 = 0;
        bool flag1 = (a[0]>=0&&a[0]<=9) ? true : false;
        bool flag2 = (b[0]>=0&&b[0]<=9)? true : false;
        for(int i = lena -1 ; i >= 0 ; i--){
            if(a[i]>=0 && a[i]<=9){
                num1+=(a[i]-0)*pow(10,size1);
                size1++;
            }
        }
        for(int i = lenb -1 ; i >= 0 ; i--){
            if(b[i]>=0 && b[i]<=9){
                num2+=(b[i]-0)*pow(10,size2);
                size2++;
            }
        }
        if(flag1&&flag2) printf("%d\n",num1+num2);
        else if(flag1 && !flag2) printf("%d\n",num1-num2);
        else if(flag2 && !flag1) printf("%d\n",num2-num1);
        else if(!flag1 && !flag2) printf("%d\n",0-num1-num2);
    }
}
/**************************************************************
    Problem: 1003
    User: zpfbuaa
    Language: C++
    Result: Accepted
    Time:0 ms
    Memory:1608 kb
****************************************************************/

 

题目1003:A+B(按逗号分隔的A+B)

标签:result   .cpp   res   strong   ++   for   git   代码   blog   

原文地址:http://www.cnblogs.com/zpfbuaa/p/6711267.html

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