返回列表 發帖

length() 與 charAt() 函式

本帖最後由 tonyh 於 2015-1-31 14:48 編輯
  1. public class ch54
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="Hello Java!";
  6.         System.out.println("字串 "+str+" 的長度為: "+str.length()+"個字元");
  7.         System.out.print("依序為: ");
  8.         for(int i=0; i<str.length(); i++)
  9.             System.out.print(str.charAt(i)+" ");
  10.     }
  11. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. public class ch54
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="Hello Java!";
  6.         System.out.println("字串 "+str+" 的長度為: "+str.length()+"個字元");
  7.         System.out.print("依序為: ");
  8.         for(int i=0; i<str.length(); i++)
  9.             System.out.print(str.charAt(i)+" ");
  10.     }
  11. }
複製代碼

TOP

  1. public class ch54
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="Hello Java!";
  6.         System.out.println("字串 "+str+" 的長度為: "+str.length()+"個字元");
  7.         System.out.print("依序為: ");
  8.         for(int i=0; i<str.length(); i++)
  9.             System.out.print(str.charAt(i)+" ");
  10.     }
  11. }
複製代碼

TOP

  1. public class ch54
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="Hello Java!";
  6.         System.out.println("字串 "+str+" 的長度為: "+str.length()+"個字元");
  7.         System.out.print("依序為: ");
  8.         for(int i=0; i<str.length(); i++)
  9.             System.out.print(str.charAt(i)+" ");
  10.     }
  11. }
複製代碼

TOP

  1. public class ch54
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="Hello Java!";
  6.         System.out.println("字串 "+str+" 的長度為: "+str.length()+"個字元");
  7.         System.out.print("依序為: ");
  8.         for(int i=0; i<str.length(); i++)
  9.             System.out.print(str.charAt(i)+" ");
  10.     }
  11. }
複製代碼

TOP

  1. public class ch54
  2. {
  3.    public static void main(String args[])
  4.    {
  5.       String str="Hello Java!";
  6.       System.out.println("字串 "+str+" 的長度為: "+str.length()+"個字元");
  7.       System.out.print("依序為: ");
  8.       for(int i=0; i<str.length(); i++)
  9.          System.out.print(str.charAt[i]+" ");
  10.    }
  11. }
複製代碼

TOP

返回列表