九度oj 1143

来源:互联网 发布:mac如何升级10.11 编辑:程序博客网 时间:2024/06/16 21:28
题目1143:Primary Arithmetic

时间限制:1 秒

内存限制:32 兆

特殊判题:

提交:607

解决:248

题目描述:

    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.

输出:

    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.

样例输入:
123 456555 555123 5940 0
样例输出:
NO carry operation.3 carry operations.1 carry operation.
来源:
2009年北京大学计算机研究生机试真题
#include<stdio.h>#include<iostream>using namespace std;int m,n;int main(){        while(cin>>m>>n)    {      int a=0;      int b=0;      if(m==0&&n==0)      {        break;        }        while(m!=0&&n!=0)        {        a=(m%10+n%10+a)/10;        if(a>=1)        {           b++;           }           m/=10;           n/=10;           }           if(b==0)           {                cout<<"NO carry operation.\n";                }                else if(b==1)                {                     cout<<b<<" carry operation.\n";                     }                     else                     {                       cout<<b<<" carry operations.\n";                       }                       }                       }                                              


0 0
原创粉丝点击