第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定

Java中怎么把一串二進(jìn)制轉(zhuǎn)換成數(shù)組呢?

列入有000000111 ?

轉(zhuǎn)換成

000

000

111

我只寫到了將任意十進(jìn)制轉(zhuǎn)換成二進(jìn)制- - ?

求大神指點(diǎn)指點(diǎn)

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.IOException;

import java.util.Scanner;

public class Conversation { ?

? ?public static void main(String args[]){

? ?Scanner input = new Scanner(System.in);

? ?System.out.print("請輸入二進(jìn)制數(shù)字: ");

? ?int m=input.nextInt();

? ? ? ?toBinary(m);

? ?} ?

? ? static void toBinary(int num){ ?

? ? ? ?if(num/2==0){

? ? ? ? int w = num%2;

? ? ? ? ? ?System.out.print(w+" "); ?

? ? ? ?} ?

? ? ? ?else{ ?

? ? ? ? int w = num%2;

? ? ? ? ? ?toBinary(num/2);

? ? ? ? ? ?System.out.print(w+" "); ?

? ? ? ?}?

? ?} ?

? ? ?}


正在回答

2 回答

額,這是把二進(jìn)制轉(zhuǎn)換成十進(jìn)制的....

0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

zxybn 提問者

驢唇不對馬嘴。- -
2015-03-23 回復(fù) 有任何疑惑可以回復(fù)我~
#2

ybbzbb 回復(fù) zxybn 提問者

額.....
2015-03-23 回復(fù) 有任何疑惑可以回復(fù)我~
#3

ybbzbb 回復(fù) zxybn 提問者

你要做什么效果???
2015-03-23 回復(fù) 有任何疑惑可以回復(fù)我~
package?com.rui.test;

public?class?test?{
????public?static?void?main(String[]?args)?{
????????//定義一個二進(jìn)制的數(shù)
????????String?str="1010";
????????
????????//將這個二進(jìn)制的字符串進(jìn)行反串
????????char?[]?ch=str.toCharArray();
????????for?(int?i?=?0;?i?<?ch.length;?i++)?{
????????????char?c=ch[i];
????????????ch[i]=ch[ch.length-i-?1];
????????????ch[ch.length-i-1]=c;
????????????if?((ch.length-1)/2?==i)?{
????????????????break;
????????????}
????????}????
????????
????????StringBuffer?strbuff=new?StringBuffer(String.copyValueOf(ch));
????????int?num=0;
????????for?(int?i?=?0;?i?<?strbuff.length();?i++)?{
????????????num+=(strbuff.charAt(i)-48)*Math.pow(2,i);
????????}
????????System.out.println(num);
????}

}


0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報

0/150
提交
取消

Java中怎么把一串二進(jìn)制轉(zhuǎn)換成數(shù)組呢?

我要回答 關(guān)注問題
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號