nyoj A+B Problem(V)

A+B Problem(V)

时间限制: 1000 ms  |  内存限制: 65535 KB
难度: 1
描述
做了A+B Problem之后,Yougth感觉太简单了,于是他想让你求出两个数反转后相加的值。帮帮他吧
输入
有多组测试数据。每组包括两个数m和n,数据保证int范围,当m和n同时为0是表示输入结束。
输出
输出反转后相加的结果。
样例输入
1234 1234
125 117
0 0
样例输出
8642
1232
 
     
#include
#include
#include
#include 
using namespace std;
int main()
{
	int  a,b;
	


   while(cin>>a>>b)	  
    {
      int m,n,x=0,y=0;
	  if(a==0&&b==0)
	     break; 
      while(a)
	   {
	   	   x=x*10+a%10;
	   	   a/=10;
	   }
	   
	   while(b)
	   {
	   	  y=y*10+b%10;
	   	  b/=10;
	   }
	   
	   cout<	   cout<	   
  
    }
	  return 0;
} 
 
     
   从这道题中发现在int型转char 型的方法 
 
     
   #include
#include 
#include 
#include   //itoa函数的头文件!!! 
using namespace std; 
int main()
{
    int num;
    char str[20];
    cin>>num;
    itoa(num, str,10 );
    cout< 
     
  但是itoa函数中 10 数字不明白什么意思 以后再看

你可能感兴趣的:(NYOJ)