返回列表 發帖

【123】進位制轉換(二進制) 練習

本帖最後由 tonyh 於 2024-2-1 16:51 編輯
  1. public class Test {
  2.     public static void main(String[] args) {
  3.         String str="108";
  4.         System.out.println(str+1);
  5.         int a=Integer.valueOf(str);  //字串轉整數
  6.         System.out.println(a+1);
  7.         String b=Integer.toBinaryString(a);  //整數轉二進制字串
  8.         System.out.println(b);
  9.         System.out.printf("%08d\n", Integer.valueOf(b));  //調整為固定8位元寬度
  10.         int c=Integer.valueOf(b, 2);  //二進制字串轉整數
  11.         System.out.println(c);
  12.     }
  13. }
複製代碼

  1. public class A {

  2.         public static void main(String[] args) {
  3.                 String str="108";
  4.         System.out.println(str+1);
  5.         int a=Integer.valueOf(str);
  6.         System.out.println(a+1);
  7.         String b=Integer.toBinaryString(a);
  8.         System.out.println(b);
  9.         System.out.printf("%08d\n", Integer.valueOf(b));
  10.         int c=Integer.valueOf(b, 2);
  11.         System.out.println(c);
  12.         }

  13. }
複製代碼

TOP

返回列表