小孙


私信TA

用户名:2409244461

访问量:9550

签 名:

这是一个废物

等  级
排  名 294
经  验 5625
参赛次数 1
文章发表 40
年  龄 19
在职情况 学生
学  校 河南工业职业技术学院
专  业 软件技术

  自我简介:

解题思路:   拿到字符串之后直接截取从 m-1 到 n。

注意事项:    字符串截取

                  传入两个参数:substring(int beginIndex, int endIndex)

                  从索引beginIndex开始到索引endIndex结束(返回结果包含索引为beginIndex的字符不包含索引我endIndex的字符)

import java.util.Scanner;
public class Main{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        String s = sc.next();
        int m =sc.nextInt();
        // 截取字符串
        String st = s.substring((m-1),s.length());
        System.out.println(st);
    }
}


 

0.0分

6 人评分

  评论区

写的太好了,谢谢楼主
2021-12-19 00:11:23
  • «
  • 1
  • »