解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class Main {
public static String[] input(){
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
sc.nextLine();
String[] array = new String[N];
for(int i=0;i < N;i++){
String str = sc.nextLine();
str = str.replaceAll(" ", ",");
array[i] = str;
}
return array;
}
public static void print(String[] array){
for(int i=0;i<array.length;i++){
System.out.println(array[i]);
}
}
public static void main(String[] arg){
print(input());
}
}
0.0分
0 人评分
C语言训练-求函数值 (C语言代码)浏览:971 |
【绝对值排序】 (C语言代码)浏览:820 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:578 |
printf基础练习2 (C语言代码)浏览:822 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:773 |
C语言训练-列出最简真分数序列* (C语言代码)浏览:652 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:746 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:640 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:621 |
1014题解浏览:515 |
Fare丶梦 2017-08-22 10:03:37 |
这类似于Scanner sc = new Scnner(System.in); int n = sc.nextInt; String类型的输入方式有两种,,一种是next(),,,,一种是nextLine(),,,nextLine()会读取你输入回车前所有输入的数据(包括空格),,而next()不会读取空格后的回车内容