博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[解题报告]HDU 1720 A+B Coming
阅读量:5302 次
发布时间:2019-06-14

本文共 813 字,大约阅读时间需要 2 分钟。

A+B Coming

Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 4331    Accepted Submission(s): 2771

Problem 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
 

 

Author
威士忌
 

 

Source
 

 

Recommend
lcy
 

 

 

 

如果你首先想到的是转成十进制再加那你就弱爆了

 

#include
int main(){ int i,j,sum; while(scanf("%x%x",&i,&j)!=EOF) { sum=i+j; printf("%d\n",sum); } return 0;}

 

转载于:https://www.cnblogs.com/TheLaughingMan/archive/2013/05/28/3104262.html

你可能感兴趣的文章
数据结构之队列
查看>>
垃圾回收器
查看>>
20135317的博客目录
查看>>
认知的概率模型(ESSLLI教程) - 第五部分译文 - 奥卡姆剃刀和信仰守恒定律
查看>>
截取utf-8字符串原理
查看>>
文件输入样式修改
查看>>
Scrum/Sprint敏捷开发方法.
查看>>
使用字符串方式
查看>>
NYTimes Objective-C 编程风格指南(参考)
查看>>
innodb_flush_method理解【转】
查看>>
iOS:UIView的CALayer基本演练
查看>>
C++:虚函数的引入
查看>>
struts2
查看>>
oracle 获取周末 及trunc的用法
查看>>
HDU 1505 City Game【DP】
查看>>
UVa 1152 4 Values whose Sum is 0
查看>>
HDU 1556 Color the ball【树状数组】
查看>>
第十七周 6.20 --- 6.26
查看>>
第一周 8.29 - 9.4
查看>>
【转】JS对Cookie的读写删除
查看>>