java十进制传二进制_JAVA中的十进制转换为二进制

JAVA中的十进制转换为二进制

关注:106  答案:5  mip版

解决时间 2021-02-08 10:44

e6cb1a03ad541b3098697807b7bf1798.png

提问者这笑,有多危险

2021-02-07 11:41

不要用函数

最佳答案

e6cb1a03ad541b3098697807b7bf1798.png

二级知识专家此生不换的執著

2021-02-07 12:59

public class test {

public static void main(String[] args) {

String m = Integer.toBinaryString(120);

System.out.println(m);

}

}

--------------------------------

public class test {

public static void main(String[] args) {

int m = 13;

String s = "";

while (m > 0) {

s = m % 2 + s;

m = m / 2;

}

System.out.println(s);

}

}

全部回答

e6cb1a03ad541b3098697807b7bf1798.png

1楼会有一股神秘感

2021-02-07 17:08

public class Bin

{

public static void main(String[] args)

{

StringBuffer sbf = toBin(5);

String str=sbf.reverse().toString();

System.out.println(str);

}

static StringBuffer toBin(int x)

{

StringBuffer result=new StringBuffer();

do{

result.append(x%2);

x/=2;

}while(x>0);

return result;

}

}

e6cb1a03ad541b3098697807b7bf1798.png

2楼是你的阿离

2021-02-07 16:13

simpledateformat objsdateformat = new simpledateformat("yyyy-mm-dd hh:mm:ss");

string strcurrenttime = objsdateformat.format(date类型的时间);

注:大写的hh为24小时制,小写的hh为12小时制,当然还可以在ss的后面加上 a,这样可以在后面显示上下文:显示效果为“2008-03-24 17:00:14 下午”

e6cb1a03ad541b3098697807b7bf1798.png

3楼無字情書

2021-02-07 15:02

public static void main(String[] args) {

StringBuffer bi = new StringBuffer();

int x = 90;

do{

int y = x%2;

bi.insert(0,y+"");

x = (x - y) / 2;

}while(x > 0);

System.out.println(bi.toString());

}

e6cb1a03ad541b3098697807b7bf1798.png

4楼百合的盛世恋

2021-02-07 14:03

public class tobin {

public static void main(String[] args) {

int x = 17;//转换前的十进制数

int num=0;

for(int y=x;y!=0;num++)y=y/2;//计算转换后二进制数的位数

int[] bin = new int[num];//转换后的二进制数

for(int i=num-1,y=x;i>=0;i--){

bin[i]=y%2;

y=y/2;

}

for(int i=0;i

System.out.print(bin[i]);

}

}

我要举报

如以上问答内容为低俗/色情/暴力/不良/侵权的信息,可以点下面链接进行举报,我们会做出相应处理,感谢你的支持!

→点此我要举报以上信息!←

推荐资讯

大家都在看

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值