概述
Problem Description
There must be many A + B problems in our HDOJ , now a new one is coming.
Give you two hexadecimal integers , your task is to calculate the sum of them,and print it in hexadecimal too.
Easy ? AC it !
INPUT
The input contains several test cases, please process to the end of the file.
Each case consists of two hexadecimal integers A and B in a line seperated by a blank.
The length of A and B is less than 15.
OUTPUT
For each test case,print the sum of A and B in hexadecimal in one line.
问题链接:http://acm.hdu.edu.cn/showproblem.php?pid=2057
AC代码:
#include<iostream>
using namespace std;
int main()
{
long long a, b;
while (scanf("%llX %llX", &a, &b) != EOF)
{
if (b + a >= 0) printf("%llXn", b + a);
else printf("-%llXn", (-b - a));
}
}
最后
以上就是健康苗条为你收集整理的HDU2057的全部内容,希望文章能够帮你解决HDU2057所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复