JAVA中的十进制转换为二进制
关注:106 答案:5 mip版
解决时间 2021-02-08 10:44
提问者这笑,有多危险
2021-02-07 11:41
不要用函数
最佳答案
二级知识专家此生不换的執著
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);
}
}
全部回答
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;
}
}
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 下午”
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());
}
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]);
}
}
我要举报
如以上问答内容为低俗/色情/暴力/不良/侵权的信息,可以点下面链接进行举报,我们会做出相应处理,感谢你的支持!
→点此我要举报以上信息!←
推荐资讯
大家都在看