標題:
【123】進位制轉換(二進制) 練習
[打印本頁]
作者:
tonyh
時間:
2024-2-1 16:31
標題:
【123】進位制轉換(二進制) 練習
本帖最後由 tonyh 於 2024-2-1 16:51 編輯
public class Test {
public static void main(String[] args) {
String str="108";
System.out.println(str+1);
int a=Integer.valueOf(str); //字串轉整數
System.out.println(a+1);
String b=Integer.toBinaryString(a); //整數轉二進制字串
System.out.println(b);
System.out.printf("%08d\n", Integer.valueOf(b)); //調整為固定8位元寬度
int c=Integer.valueOf(b, 2); //二進制字串轉整數
System.out.println(c);
}
}
複製代碼
作者:
王捷恩
時間:
2024-2-1 16:57
public class A {
public static void main(String[] args) {
String str="108";
System.out.println(str+1);
int a=Integer.valueOf(str);
System.out.println(a+1);
String b=Integer.toBinaryString(a);
System.out.println(b);
System.out.printf("%08d\n", Integer.valueOf(b));
int c=Integer.valueOf(b, 2);
System.out.println(c);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2