jsw


私信TA

用户名:jsw2580

访问量:9772

签 名:

等  级
排  名 295
经  验 5615
参赛次数 1
文章发表 28
年  龄 0
在职情况 学生
学  校 湖南警察学院
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

Scanner sc = new Scanner(System.in);
		int n = Integer.parseInt(sc.nextLine());
		String regex = "\\s";
		while(sc.hasNext()) {
			String s = sc.nextLine();
			if(n > 0) {
				n --;
				System.out.println(s + "\n");
				continue;
			}
			String[] arr = s.split(regex);
			for (int i = 0; i < arr.length; i++) {
				System.out.println(arr[i] + "\n");
			}
		}


 

0.0分

2 人评分

  评论区

  • «
  • »