Board logo

標題: 變數型態的轉換 [打印本頁]

作者: tonyh    時間: 2013-4-13 17:15     標題: 變數型態的轉換

本帖最後由 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. }
複製代碼

作者: t2364705    時間: 2013-4-13 17:33

  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. }
複製代碼

作者: t3742238    時間: 2013-4-13 17:34

  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. }
複製代碼

作者: 尤泓鈞    時間: 2013-4-13 17:39

  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. }
複製代碼

作者: 劉漢文    時間: 2013-4-15 18:07

  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.     }
複製代碼

作者: 黃博鴻    時間: 2013-4-15 18:22

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2