[填空題] 本題是判斷一個(gè)字符串“Tom”是否在另外一個(gè)字符串“I am Tom, I am from China”中出現(xiàn)。 public class jav
2021-07-20
[填空題] 本題是判斷一個(gè)字符串“Tom”是否在另外一個(gè)字符串“I am Tom, I am from China”中出現(xiàn)。
public class java1
public static void main(String[]args)
______;
str1="I am Tom, I am from China.";
str2="Tom";
int i=______;
if(______)
System.out.println("""+str2+"" is in the string:""+str1+""");
else
System.out.println("""+str2+""is not in the string:""+str1+""");
正確答案:
第A處:String strl,strB 第B處:strA.indexOf(strB) 第C處:i!=-A
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。