首页 > 学院 > 开发设计 > 正文

[leetcode]504. Base 7

2019-11-08 02:34:52
字体:
来源:转载
供稿:网友

Given an integer, return its base 7 string rePResentation.

Example 1:

Input: 100Output: "202"

Example 2:

Input: -7Output: "-10"

Note:The input will be in range of [-1e7, 1e7].

Answer:

public String convertToBase7(int num) {       return Long.toString(Long.valueOf(num),7);}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表