標題:
TQC210
[打印本頁]
作者:
許逸瑋
時間:
2012-5-5 12:05
標題:
TQC210
import java.util.* ;
public class jva210{
public static void main(String args[]){
System.out.println("請輸入字串");
Scanner s = new Scanner(System.in);
String str = s.next();
System.out.println("請輸入要搜尋的字元或字串");
String str2 = s.next();
int loc = -1;
boolean find = false;
boolean afind = false ;
do{
if( (loc = str.indexOf(str2,loc+1)) > -1 ){
if(!find){
System.out.println("第幾個位置找到了");
find = true;
}
afind = true ;
System.out.println(loc+1);
}
}while(loc != -1);
if(!afind) System.out.println("字元不在字串中");
}
}
複製代碼
作者:
TOM
時間:
2012-5-5 12:13
import java.io.*;
import java.util.Scanner;
public class JVA02{
public static void main(String args[]){
System.out.println("請輸入字串");
Scanner s = new Scanner(System.in);
String str1 = s.nextLine();
System.out.println("請輸入要搜尋的字元或字串");
String str2 = s.nextLine();
boolean find = false ;
int index = -1 ;
do{
index = str1.indexOf(str2,index+1);
if(index>-1)
{
if(!find)
{
System.out.println("第幾個位置找到了!");
find = true ;
}
System.out.println(index+1);
}
}while(index!=-1);
{
if(!find) System.out.println("您要搜尋的字不在字串中");
}
}
}
複製代碼
作者:
johnson
時間:
2012-5-12 08:02
import java.util.Scanner;
public class TQC210
{
public static void main(String[] args)
{
boolean find,indexfind;
System.out.println("請輸入字串");
Scanner s=new Scanner(System.in);
String str=s.nextLine();
System.out.println("請輸入要搜尋的字元或字串");
String str2=s.nextLine();
int index=-1;
find=false;
indexfind=false;
do
{
if((index=str.indexOf(str2,index+1))>-1)
{
find=true;
if(!indexfind)
{
System.out.println("第幾個位置找到了");
indexfind=true;
}
System.out.println(index+1);
}
}while(index!=-1);
if(!find)
System.out.println("搜尋字元不在字串中");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2