【刷题小记74】小学生运算

描述 很多小学生在学习加法时,发现“进位”特别容易出错。你的任务是计算两个三位数在相加时需要多少次进位。你编制的程序应当可以连续处理多组数据,直到读到两个0(这是输入结束标记)。
输入
输入两个正整数m,n.(m,n,都是三位数)
输出

输出m,n,相加时需要进位多少次。


#include 
#include 
#include 

int main()
{
	int first,second;
    int fir_one,fir_two,fir_three;
    int sec_one,sec_two,sec_three;
    
    while(scanf("%d %d",&first,&second)&&(first||second))
    {
		fir_one=first/100;
		sec_one=second/100;
		fir_two=first/10%10;
		sec_two=second/10%10;
		fir_three=first%10;
		sec_three=second%10;
		int next=0;
		int times=0;
		if(fir_three+sec_three>=10)
		{
			next=(fir_three+sec_three)/10;
			times++;
		}
		if(fir_two+sec_two+next>=10)
		{
			next=(fir_two+sec_two+next)/10;
			times++;
		}
		if(fir_one+sec_one+next>=10)
		{
			times++;
		}
		printf("%d\n",times);
    }
	return 0;
}


你可能感兴趣的:(NYOJ水题)