Given an integer, return its base 7 string representation.
Example 1:
1 | Input: 100 |
Example 2:
1 | Input: -7 |
Note: The input will be in range of [-1e7, 1e7].
解题思路
一道很简单的题,将十进制转换为7进制,只需要用输入数字不断除7,直到输入数字小于7为止,每次除的余数从低位到高位保存就是结果。直接看代码吧
解题代码【.CPP】
1 | class Solution { |