Description
设计一个学生信息添加和查询的系统,从键盘读入学生的数据,然后通过屏幕进行显示。
Input
第一行有1个整数N,表示学生数量;
接下来有N行学生数据,分别表示学生的id(编号)、name(姓名)、birthday(生日)、score(成绩)属性的值,关键字(id)相同的记录代表同一个学生(如果id相同,后来读入的学生信息会覆盖已有的学生信息)
Output
按照id从小到大的顺序,输出所有学生的属性名称及属性值,其中score(成绩)保留1位有效数字,具体输出格式见输出样例,属性之间用“\t”进行分隔。
Sample
Input
5
0001 Mike 1990-05-20 98.5
0002 John 1992-05-20 67
0003 Hill 1994-05-20 36.5
0004 Christ 1996-05-02 86.5
0001 Jack 1998-05-20 96
Output
id:0001 name:Jack birthday:1998_5_20 score:96.0
id:0002 name:John birthday:1992_5_20 score:67.0
id:0003 name:Hill birthday:1994_5_20 score:36.5
id:0004 name:Christ birthday:1996_5_2 score:86.5
不要忘记了转换日期格式
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
class Students {
String id,name,birthday;
double score;
public Students(String id, String name, String birthday, double score) {
super();
this.id = id;
this.name = name;
this.birthday = birthday;
this.score = score;
}
//转换日期格式
public void change() {
SimpleDateFormat date1 = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat date2 = new SimpleDateFormat("yyyy_M_d");
Date d = null;
try {
d = date1.parse(birthday);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
this.birthday = date2.format(d);
}
//重写输出
@Override
public String toString() {
change();
return "id:"+id+"\tname:"+name+"\tbirthday:"+birthday+"\tscore:"+String.format("%.1f", score);
}
}
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
//建立Map<id,Students>
Map<String,Students> map = new HashMap<String,Students>();
String id;
Students stu;
int n = input.nextInt();
while(n-->0) {
id = input.next();
stu = new Students(id,input.next(),input.next(),input.nextDouble());
map.put(id, stu);
}
//见了keySet集合
Set<String> keyset = map.keySet();
//转化为List,进行排序
List<String> list = new ArrayList<String>(keyset);
Collections.sort(list);
//用迭代器输出
Iterator<String> it = list.iterator();
while(it.hasNext())
System.out.println(map.get(it.next()));
input.close();
}
}