故事要从一道题目说起~~~~~~~~
G - A+B Coming
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
题目要求输入两个十六进制的数,然后以十进制输出他们的和。
在 C 语言中 ,我们可以使用 Scanf / Printf 函数来完成 输入 / 输出
十分简单,代码如下

本文介绍了如何在C语言中处理十六进制数字的输入和转换,并探讨了C++中类似操作的实现。通过示例代码展示了在C++中如何保持与C语言相同精度地输入和输出十六进制数。
最低0.47元/天 解锁文章
2429

被折叠的 条评论
为什么被折叠?



