Description
Write a program to convert numbers in one base to numbers in a second base. There are 62 different digits:
{ 0-9,A-Z,a-z }
HINT: If you make a sequence of base conversions using the output of one conversion as the input to the next, when you get back to the original base, you should get the original number.
{ 0-9,A-Z,a-z }
HINT: If you make a sequence of base conversions using the output of one conversion as the input to the next, when you get back to the original base, you should get the original number.
Input

博客介绍了如何将大数从一种进制转换为另一种进制的解题思路和AC代码,主要通过不断求余和加法来实现转换,避免了高精度计算的复杂性。
&spm=1001.2101.3001.5002&articleId=38326611&d=1&t=3&u=ee472f23346e490b9cccd99262bf9522)
1746

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



