返回列表 發帖

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

返回列表