Primary Arithmetic

2020年1月17日 1182点热度 0人点赞 0条评论

Primary Arithmetic

时间: 1ms        内存:64M

描述:

Children are taught to add multi-digit numbers from right to left, one digit at a time. Many find the ``carry" operation, where a 1 is carried from one digit position 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''.

输出:

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

示例输入:

123 456
555 555
123 594
0 0

示例输出:

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

提示:

参考答案:

解锁文章

没有看到答案?微信扫描二维码可免费解锁文章

微信扫描二维码解锁

使用微信扫描二维码打开广告页面后可以立即关闭,再刷新此页面即可正常浏览此文章

所跳转广告均由第三方提供,并不代表本站观点!

已经扫描此二维码?点此立即跳转

code

这个人很懒,什么都没留下

文章评论