求大神打出以下的编程题,JAVA

2024-12-27 09:38:09
推荐回答(1个)
回答1:

此题代码如下:

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);
    }
}

运行结果: