首页 > 其他 > 详细

IntegerDemo2

时间:2018-11-02 10:11:39      阅读:126      评论:0      收藏:0      [点我收藏+]

package cn.it;
/*
 * 十进制转其他进制 (2-36)
 * public static String toString(int i,
                              int radix)
 */
public class IntegerDemo2 {
  public static void main(String[] args) {
   //100的3进制
   System.out.println(Integer.toString(123, 2));
  }
}

IntegerDemo2

原文:https://www.cnblogs.com/rong123/p/9894360.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!