好的这次机考确实丢人了,啥也没准备心态爆炸,全程划水等死,被疯狂diss后还是觉得写点博客记录一下
签到水题,没什么需要注意的
int main()
{
int a=0,b=0,c=0;
int cout=0;
scanf("%d%d",&a,&b);
while(a!=0||b!=0)
{
c += (a%10)+(b%10);
if(c >= 10)
{
c/=10;
cout++;
}
else
{
c=0;
}
a/=10;
b/=10;
}
printf("%d",cout);
return 0;
}