A+B Coming 解题报告

Posted T技术沙龙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A+B Coming 解题报告相关的知识,希望对你有一定的参考价值。

http://acm.sdibt.edu.cn/JudgeOnline/problem.php?id=1563

A+B Coming

Time Limit: 1 Sec   Memory Limit: 125 MB
Submissions: 32   Solved: 15
[ Submit][ Status][ Discuss]

Description

Many classmates said to me that A+B is must needs. If you can’t AC this problem, you would invite me for night meal. ^_^

Input

Input may contain multiple test cases. Each case contains A and B in one line. A, B are hexadecimal number. Input terminates by EOF.

Output

Output A+B in decimal number in one line.

Sample Input

1 9
A B
a b

Sample Output

10
21
21

代码:

Code:
  1. #include <iostream>    
  2. using namespace std;    
  3.        
  4. int a,b;     
  5.        
  6. int main()     
  7.     while(cin>>hex>>a>>b)    
  8.         cout<<dec<<a+b<<endl;    
  9.     return 0;     
  10.      
  11. /**************************************************************   
  12.     Problem: 1563   
  13.     User: mmoaay   
  14.     Language: C++   
  15.     Result: Accepted   
  16.     Time:0 ms   
  17.     Memory:1352 kb   
  18. ****************************************************************/  

刚开始的时候自己写的16进制转10进制,结果无耻地错了,然后更无耻的是:原来如此简单……

有必要总结一下c++输入输出数的进制问题: 

dec-十进制(默认)

oct-八进制

hex-十六进制

在cin和cout中指明相应的数据形式。

例:

Code:
  1. int i,j,k,l;   
  2. cout<<"Input i(oct) j(hex) k(hex) l(dec):"<<endl;   
  3. cin>>oct>>i;                                            //输入为八进制数   
  4. cin>>hex>>j;                                            //输入为十六进制数   
  5. cin>>k;                                                 //输入仍为十六进制数   
  6. cin>>dec>>l;                                            //输入为十进制数   
  7. cout<<"hex:"<<"i="<<hex<<i<<endl;   
  8. cout<<"dec:"<<"j="<<dec<<j<<'/t'<<"k="<<k<<endl;   
  9. cout<<"oct:"<<"l="<<oct<<l;   
  10. cout<<dec<<endl;                                        //恢复十进制输出状态  

 

以上是关于A+B Coming 解题报告的主要内容,如果未能解决你的问题,请参考以下文章

A+B Coming 解题报告

HDU-1576 A/B 基础数论+解题报告

HDU 1720 A+B Coming

A+B Coming(hdu1720)

(HDU)1720 -- A+B Coming (A+B来了)

CodeForce 837 A/B/C解题报告