标签:
这是一道水题,就是让你把给出的两个数倒置后相加再倒回来,模拟一下就行。
#include<cstdio> int n,m,x,y,t; int main(){ for(scanf("%d",&t);t;t--){ scanf("%d%d",&n,&m); x=0;y=0; for (;n;n/=10)x=x*10+n%10; for (;m;m/=10)y=y*10+m%10; x+=y;y=0; for (;x;x/=10)y=y*10+x%10; printf("%d\n",y); } return 0; }
SPOJ problem 42: Adding Reversed Numbers
标签:
原文地址:http://www.cnblogs.com/moris/p/4295289.html