返回列表 發帖

變數型態的轉換

本帖最後由 tonyh 於 2013-4-13 17:27 編輯

試將 String 型態的1995, 分別轉換為 int 型態與 float 型態, 再轉回 String 型態.
  1. public class ch62
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String a="1995";
  6.         System.out.println("字串型態: "+a);
  7.         int b=Integer.parseInt(a);
  8.         System.out.println("整數型態: "+b);
  9.         float c=Float.parseFloat(a);
  10.         System.out.println("浮點數型態: "+c);
  11.         String d=Integer.toString(b);
  12.         System.out.println("整數型態轉回字串: "+d);
  13.         String e=Float.toString(c);
  14.         System.out.println("浮點數型態回字串: "+e);
  15.     }
  16. }
複製代碼

  1. public class ch62
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String a="1995";
  6.         System.out.println("字串型態: "+a);
  7.         int b=Integer.parseInt(a);
  8.         System.out.println("整數型態: "+b);
  9.         float c=Float.parseFloat(a);
  10.         System.out.println("浮點數型態: "+c);
  11.         String d=Integer.toString(b);
  12.         System.out.println("整數型態轉回字串: "+d);
  13.         String e=Float.toString(c);
  14.         System.out.println("浮點數型態回字串: "+e);
  15.     }
  16. }
複製代碼

TOP

  1. public class ch62
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String a="1995";
  6.         System.out.println("字串型態: "+a);
  7.         int b=Integer.parseInt(a);
  8.         System.out.println("整數型態: "+b);
  9.         float c=Float.parseFloat(a);
  10.         System.out.println("浮點數型態: "+c);
  11.         String d=Integer.toString(b);
  12.         System.out.println("整數型態轉回字串: "+d);
  13.         String e=Float.toString(c);
  14.         System.out.println("浮點數型態回字串: "+e);
  15.     }
  16. }
複製代碼

TOP

  1. public class ch62
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String a="1995";
  6.         System.out.println("字串型態: "+a);
  7.         int b=Integer.parseInt(a);
  8.         System.out.println("整數型態: "+b);
  9.         float c=Float.parseFloat(a);
  10.         System.out.println("浮點數型態: "+c);
  11.         String d=Integer.toString(b);
  12.         System.out.println("整數型態轉回字串: "+d);
  13.         String e=Float.toString(c);
  14.         System.out.println("浮點數型態回字串: "+e);
  15.     }
  16. }
複製代碼

TOP

  1. public class ch62
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String a="1995";
  6.         System.out.println("字串型態: "+a);
  7.         int b=Integer.parseInt(a);
  8.         System.out.println("整數型態: "+b);
  9.         float c=Float.parseFloat(a);
  10.         System.out.println("浮點數型態: "+c);
  11.         String d=Integer.toString(b);
  12.         System.out.println("整數型態轉回字串: "+d);
  13.         String e=Float.toString(c);
  14.         System.out.println("浮點數型態回字串: "+e);
  15.     }
複製代碼

TOP

  1. public class ch62
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String a="1995";
  6.         System.out.println("字串狀態: "+a);
  7.         int b=Integer.parseInt(a);
  8.         System.out.println("整數狀態: "+b);
  9.         Float c=Float.parseFloat(a);
  10.         System.out.println("浮點數狀態: "+c);
  11.         String d=Integer.toString(b);
  12.         System.out.println("整數狀態轉回字串: "+d);
  13.         String e=Float.toString(c);
  14.         System.out.println("浮點數狀態轉回字串: "+e);
  15.     }
  16. }
複製代碼

TOP

返回列表