Module: (Python) 子例程。递归


Problem

10/12

数字转十六进制数系统

Theory Click to read/hide

有用信息

英文字母'A'有代码 65
条目c = chr(65) 将英文字母 A.
保存在变量 c中 因此,您可以通过其代码获得所需的字母。

Problem

编写一个将数字转换为十六进制的递归过程。 

输入
程序的输入是数字 N (\(N<=4096\)) - 第 10 个数字系统中的数字。< br />
印记
在屏幕上显示一个数字——十六进制数字系统中的一个数字。

 

例子
<头> <日># <正文>

 



输入 输出
1 123 7B
Write the program below
n = int(input())
printHex(n)       

     

Program check result

To check the solution of the problem, you need to register or log in!