此题代码如下:
public class S {
// 主方法
public static void main(String[] args) {
// 字符串str
String str = "No cheating in this exam!";
// 提取子字符串
String substring = str.substring(3, 11);
System.out.println(substring);
// 字符串exam在str中的位置
int indexOf = str.indexOf("exam");
System.out.println("字符串exam在str中的位置是:" + indexOf);
}
}
运行结果: