返回列表 發帖

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

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){
   }

   }
}
分數掛蛋的心情像空白的紙,再次期望著奇蹟的到來。

TOP

返回列表