UVa OJ 10035 Primary Arithmetic

部署运行你感兴趣的模型镜像

UVa OJ 10035 

Problem B: Primary Arithmetic

Children are taught to add multi-digit numbers from right-to-left one digit at a time. Many find the "carry" operation - in which a 1 is carried from one digit position to be added to the next - to be a significant challenge. Your job is to count the number of carry operations for each of a set of addition problems so that educators may assess their difficulty.

Input

Each line of input contains two unsigned integers less than 10 digits. The last line of input contains 0 0.

Output

For each line of input except the last you should compute and print the number of carry operations that would result from adding the two numbers, in the format shown below.

Sample Input

123 456
555 555
123 594
0 0

Sample Output

No carry operation.
3 carry operations.
1 carry operation.

计算两个十进制整数在相加时需要多少次进位。每个输入的整数不超过9个数字。


注意int的上限是2147483647,因此可以用整数来保存输入,每次把a和b分别模10就能获取它们的个位数。


#include <cstdio>
#include <cstdlib>
#include <cstring> 

using namespace std;

int main(int argc, char *argv[])
{
    int a, b;
    while (scanf("%d%d", &a, &b) == 2)
    {
        if (!a && !b)
            break;
        int c = 0, ans = 0;
        for (int i = 9; i >= 0; --i)
        {
            c = (a%10 + b%10 + c) > 9 ? 1 : 0;    // c是进位
            ans += c;
            a /= 10;
            b /= 10; 
        }
        if (ans == 0)
            printf("No carry operation.\n");
        else if (ans == 1)
            printf("%d carry operation.\n", ans);
        else
            printf("%d carry operations.\n", ans);
    } 
    //system("pause");
    return 0;
}




您可能感兴趣的与本文相关的镜像

Linly-Talker

Linly-Talker

AI应用

Linly-Talker是一款创新的数字人对话系统,它融合了最新的人工智能技术,包括大型语言模型(LLM)、自动语音识别(ASR)、文本到语音转换(TTS)和语音克隆技术

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值