首页 > 代码库 > A+B Problem(V) 时间限制:1000 ms | 内存限制:65535 KB 难度:1 描述 做了A+B Problem之后,Yougth感觉太简单了,于是他想让你求出两个数反
A+B Problem(V) 时间限制:1000 ms | 内存限制:65535 KB 难度:1 描述 做了A+B Problem之后,Yougth感觉太简单了,于是他想让你求出两个数反
#include<stdio.h>
int main()
{
int i,j,a,b,n,m;
while(1)
{
scanf("%d%d",&m,&n);
if(m==0 && n==0)
{
break;
}
i=0;
while(m!=0)
{
a=m%10;
i=i*10+a;
m=(m-a)/10;
}
j=0;
while(n!=0)
{
b=n%10;
j=j*10+b;
n=(n-b)/10;
}
printf("%d\n",i+j);
}
return 0;
}
int main()
{
int i,j,a,b,n,m;
while(1)
{
scanf("%d%d",&m,&n);
if(m==0 && n==0)
{
break;
}
i=0;
while(m!=0)
{
a=m%10;
i=i*10+a;
m=(m-a)/10;
}
j=0;
while(n!=0)
{
b=n%10;
j=j*10+b;
n=(n-b)/10;
}
printf("%d\n",i+j);
}
return 0;
}
A+B Problem(V) 时间限制:1000 ms | 内存限制:65535 KB 难度:1 描述 做了A+B Problem之后,Yougth感觉太简单了,于是他想让你求出两个数反
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。