2011年11月7日 星期一

JAVA 範例 ch10 Sample4

新增字串


/*新增字串*/
import java.io.*;

class Sample4
{
 public static void main(String[] args) throws IOException
 {
  System.out.println("請輸入字串。");
  
  BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
  
  String str1=br.readLine();   //讀取從鍵盤輸入的第一個字串
  
  System.out.println("請輸入要新增的字串。");
  
  String str2=br.readLine();   //讀取從鍵盤輸入的第二個字串
  
  StringBuffer sb=new StringBuffer(str1);
  sb.append(str2);   //第二個字串會連接在第一個字串之後
  
  System.out.println("在「" + str1 + "」後新增「" + str2 + "」的話,就會變成「" + sb + "」。");
 }
}

沒有留言:

張貼留言