21147_PrimaryArithmetic

2022-5-16 18:18| 发布者: Hocassian| 查看: 28| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-3-89504928947700-Problem List-采集的数据-后羿采集器.html

Pro.ID

21147

Title

Primary Arithmetic

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=21147

AC

52

Submit

222

Ratio

23.42%

时间&空间限制

  • Time Limit: 10000/5000 MS (Java/Others)     Memory Limit: 32768/32768 K (Java/Others)
  • 描述

    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.

    输入

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

    输出

    Description

    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.

    Source

    样例输入

    123 456
    555 555
    123 594
    0 0

    样例输出

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

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部