本题是判断一个字符串“Tom”是否在另外一个字符串“I am Tom,I am from China”中出现。 public class java1{ public static void main(String[] args) { ______; s

admin2012-12-02  17

问题 本题是判断一个字符串“Tom”是否在另外一个字符串“I am Tom,I am from China”中出现。
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+"\"");
}
}

选项

答案第1处:String str1,str2第2处:str1.index0f(str2)第3处:i!=-1

解析 第1处使用前定义变量str1和str2;第2处和第3处判断str2是否是str1的子串。
转载请注明原文地址:https://kaotiyun.com/show/d2ID777K
0

相关试题推荐
随机试题
最新回复(0)