解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class 学生的数据记录
{
public static void main(String[]aesa)
{
print(input());
}
public static String [] input()
{
Scanner sc=new Scanner (System.in);
int n=sc.nextInt();
sc.nextLine();
String[]arr=new String[n];
for(int i=0;i<n;i++)
{
String s=sc.nextLine();
s=s.replace(' ', ',');
arr[i]=s;
}
return arr;
}
public static void print(String arr[])
{
for(int i=0;i<arr.length;i++)
{
System.out.println(arr[i]);
}
}
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:774 |
程序员的表白 (C语言代码)浏览:1575 |
C语言训练-立方和不等式 (C语言代码)浏览:779 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:669 |
字符串的输入输出处理 (C语言代码)浏览:1019 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:564 |
字符逆序 (C语言代码)浏览:506 |
交换Easy (C语言代码)浏览:805 |
链表数据求和操作 (C语言代码)浏览:1035 |
简单的a+b (C语言代码)浏览:491 |