A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.util.Scanner;

public class Demo2 {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
String line = sc.nextLine();
String[] sp = line.split(" ");
if (sp[1] == "?") {
sp[1] = "\\?";
}
// System.out.println(sp[1]);
String[] sp1 = sp[0].split(sp[1]);
int size = Integer.parseInt(sp[sp.length - 1]);
if (size > sp1.length) {
System.out.println(-1);
return;
} else {
System.out.println(sp1[Integer.parseInt(sp[sp.length - 1]) - 1]);
}
}
}
样例输入:AAA?BBB?CCC? ? 2
输出:BBB



上面的代码错在哪里?

2 个回复

倒序浏览
。。。没有人,搞了半天原用来字符串要用.equals!
import java.util.Scanner;

public class Demo2 {

        /**
         * @param args
         */
        public static void main(String[] args) {
                // TODO Auto-generated method stub
                Scanner sc = new Scanner(System.in);
                String line = sc.nextLine();
                String[] sp = line.split(" ");
                if (sp[1].equals("?") || sp[1].equals("+")) {
                        sp[1] = "\\" + sp[1];
                }
                System.out.println(sp[1]);
                String[] sp1 = sp[0].split(sp[1]);
                int size = Integer.parseInt(sp[sp.length - 1]);
                if (size > sp1.length) {
                        System.out.println(-1);
                        return;
                } else {
                        System.out.println(sp1[Integer.parseInt(sp[sp.length - 1]) - 1]);
                }
        }
}                                  成功!!!
回复 使用道具 举报
你这题 需求到底是什么
没看懂
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马