|
|
@ -1,13 +1,13 @@
|
|
|
|
class jinzhi_lj {
|
|
|
|
class jinzhi_lj {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
int a = 15;
|
|
|
|
int n = 15;
|
|
|
|
int n = 0;
|
|
|
|
int x=0;
|
|
|
|
int i=0;
|
|
|
|
int i=0;
|
|
|
|
while (a > 0) {
|
|
|
|
while (n > 0) {
|
|
|
|
n = (int) (n + (a % 2) * Math.pow(10,i));
|
|
|
|
x = (int) (x + (n % 2) * Math.pow(10,i));
|
|
|
|
a = a / 2;
|
|
|
|
n = n / 2;
|
|
|
|
i=i+1;
|
|
|
|
i=i+1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
System.out.print("十进制a转换二进制n为:" + n);
|
|
|
|
System.out.print("十进制n转换二进制a为:" + x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|