#11841: UVA 有過 但這一直WA


103502532 (987987)

學校 : 臺北市立中山女子高級中學
編號 : 44502
來源 : [140.115.50.59]
最後登入時間 :
2017-11-17 16:20:24
c014. 10035 - Primary Arithmetic -- UVa10035 | From: [124.155.183.122] | 發表日期 : 2017-03-26 03:21

#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;

int main(){
    int a, b;
    while (cin >>a >> b && a!=0 && b!=0){
        int temp=0, carry=0;
        while (a||b){
            temp = a%10 + b%10 + temp;
            if (temp/=10){
            carry++;
            }
            a/=10;
            b/=10;
        }
        if (carry==0){
             cout << "No carry operation." << endl;
        }
        else if (carry==1){
            cout << "1 carry operation." << endl;
        }
        else {
           cout << carry << " carry operations." << endl;
        }
    }
}

 
ZeroJudge Forum