Board logo

標題: TQC210 [打印本頁]

作者: b790113g    時間: 2012-3-10 20:08     標題: TQC210

  1. import java.util.* ;
  2. public class jva210{

  3.    public static void main(String args[]){
  4.                
  5.                 System.out.println("請輸入字串");

  6.                 Scanner s = new Scanner(System.in);
  7.                 String str = s.next();

  8.                 System.out.println("請輸入要搜尋的字元或字串");
  9.                 String str2 = s.next();

  10.                 int loc = -1;
  11.                 boolean find = false;
  12.                 boolean afind = false ;
  13.                 do{
  14.                         if( (loc = str.indexOf(str2,loc+1)) > -1 ){
  15.                                 if(!find){
  16.                                         System.out.println("第幾個位置找到了");
  17.                                         find = true;
  18.                                 }
  19.                                 afind = true ;
  20.                                 System.out.println(loc+1);
  21.                         }
  22.                 }while(loc != -1);
  23.                
  24.                 if(!afind) System.out.println("字元不在字串中");
  25.    }
  26. }
複製代碼

作者: p17johnny    時間: 2012-6-7 20:29

import java.io.*;

public class JVA210{

   public static void main(String args[]){
      int site;
      boolean find,find1;
   try{
      System.out.println("請輸入字串");

      BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

      String str = br.readLine();
  
      System.out.println("請輸入要搜尋的字元或字串");
      String str2 = br.readLine();
  
      site = -1;
      find = false;
      find1 = false;
      do{
         if( (site = str.indexOf(str2,site+1)) > -1 ){
            find = true;
            if(!find1) System.out.println("第幾個位置找到了");
            find1 = true;
            System.out.println(site+1);
         }
      }while(site != -1);
      if(!find)
         System.out.println("您要搜尋的的字不在字串中");
    }catch(Exception e){
   }

   }
}




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