码迷,mamicode.com
首页 > 编程语言 > 详细

进制转换算法

时间:2015-04-07 21:23:20      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

package com.lk.C;

import java.util.Stack;

public class Test3 {
    public static String getBinary(int decimal){
        Stack<Integer> stack = new Stack<Integer>();
        while(decimal != 0){
            stack.push(decimal % 2);//向栈中增加余数
            decimal = decimal / 2;//获得新商
        }
        StringBuffer sb = new StringBuffer();
        while(!stack.empty()){
            sb.append(stack.pop());
        }
        return sb.toString();
    }
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        System.out.println(getBinary(64));
    }

}
1000000

这里是十进制转换成二进制

进制转换算法

标签:

原文地址:http://www.cnblogs.com/luankun0214/p/4399388.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!