gpt4 book ai didi

java - 从 .txt 文件中的学生列表计算平均值

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:37:59 25 4
gpt4 key购买 nike

我有一个单独的 .txt 文件,其中有一个“学生”列表,旁边有自己的标记,从 0 到 10,这里是 .txt 的示例:

Mark 2
Elen 3
Luke 7
Elen 9
Jhon 5
Mark 4
Elen 10
Luke 1
Jhon 1
Jhon 7
Elen 5
Mark 3
Mark 7

我想做的是计算每个学生的平均数(用 double 表示),这样输出看起来像这样:

Mark: 4.0
Elen: 6.75
Luke: 4.0
Jhon: 4.33

这是我想出的,现在我只设法使用 Properties 不重复地列出学生姓名,但每个学生旁边显示的数字显然是程序找到的最后一个。
我在实现 GUI 时将它包含在按钮 actionlistener 中,通过按下按钮,上面显示的输出是 TextArea 中的 append:

 b1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent d) {

try {
File file = new File("RegistroVoti.txt");
FileInputStream fileInput = new FileInputStream(file);
Properties properties = new Properties();
properties.load(fileInput);
fileInput.close();

Enumeration enuKeys = properties.keys();
while (enuKeys.hasMoreElements()) {
String key = (String) enuKeys.nextElement();
String value = properties.getProperty(key);
l1.append(key + ": " + value + "\n");
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
});

我想用Collectors来计算平均值,但实际上我不知道如何实现...

感谢任何帮助!

提前致谢!

最佳答案

我喜欢做这种事情的方式是使用 Map s 和 List

要从文件中读取行,我喜欢 nio 阅读方式,所以我会做

List<String> lines = Files.readAllLines(Paths.get("RegistroVoti.txt"));

然后,你可以制作一个 HashMap <String, List <Integer>> ,它将存储每个人的姓名和与其关联的数字列表:

HashMap<String, List<Integer>> studentMarks = new HashMap<>();

然后,使用 for each 循环遍历每一行并将每个数字添加到 HashMap 中:

for (String line : lines) {
String[] parts = line.split(" ");
if (studentMarks.get(parts[0]) == null) {
studentMarks.put(parts[0], new ArrayList<>());
}
studentMarks.get(parts[0]).add(Integer.parseInt(parts[1]));
}

然后,您可以遍历映射中的每个条目并计算关联列表的平均值:

for (String name : studentMarks.keySet()) {
System.out.println(name + " " + studentMarks.get(name).stream().mapToInt(i -> i).average().getAsDouble());
}

(请注意,这是一个 Java 8 stream 解决方案;在早期版本中,您可以轻松编写一个 for 循环来计算它)

有关我使用过的一些东西的更多信息,请参阅:

希望这对您有所帮助!

编辑一个完整的解决方案:

b1.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent d) {
try {
List<String> lines = Files.readAllLines(Paths.get("RegistroVoti.txt"));

Map<String, List<Integer>> studentMarks = new HashMap<>();

for (String line : lines) {
String[] parts = line.split(" ");

if (studentMarks.get(parts[0]) == null) {
studentMarks.put(parts[0], new ArrayList<>());
}
studentMarks.get(parts[0]).add(Integer.parseInt(parts[1]));
}

for (String name : studentMarks.keySet()) {
System.out.println(name + " " + studentMarks.get(name).stream().mapToInt(i -> i).average().getAsDouble());
}
} catch (IOException e) {
e.printStackTrace();
}
}
});

关于java - 从 .txt 文件中的学生列表计算平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38375763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com