作业帮 > 综合 > 作业

Java3进制数转15进制数 (0~9,A-E)

来源:学生作业帮 编辑:灵鹊做题网作业帮 分类:综合作业 时间:2024/06/23 15:15:53
Java3进制数转15进制数 (0~9,A-E)
Java怎么做3进制数转15进制数 (0~9,A-E)
Java3进制数转15进制数 (0~9,A-E)
java.lang.Object java.lang.Number java.lang.Integer
static String
toString(int i,
int radix) Returns a string representation of the first argument in the
radix specified by the second argument.
static int
parseInt(String s,
int radix) Parses the string argument as a signed integer in the radix
specified by the second argument.