概述
描述
-
输入
- 输入两个正整数m,n.(m,n,都是三位数) 输出
输出m,n,相加时需要进位多少次。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
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("%dn",times);
}
return 0;
}
最后
以上就是欢呼香烟为你收集整理的【刷题小记74】小学生运算的全部内容,希望文章能够帮你解决【刷题小记74】小学生运算所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复