package Score; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; public class ScoreAverageCalculator { public static void main(String[] args) { String filePath = "scores.txt"; int sum = 0; int count = 0; // try-with-resources 确保 BufferedReader 自动关闭 try (BufferedReader br = new BufferedReader(new FileReader(filePath))) { String line; while ((line = br.readLine()) != null) { // 跳过空行 if (line.trim().isEmpty()) { continue; } try { int score = Integer.parseInt(line.trim()); sum += score; count++; } catch (NumberFormatException e) { // 数字格式错误处理:打印错误信息并跳过该行 System.err.println("数字格式错误,跳过无效数据: " + line); } } // 计算并输出平均分 if (count > 0) { double average = (double) sum / count; System.out.println("有效成绩数量: " + count); System.out.println("成绩总和: " + sum); System.out.println("平均分: " + average); } else { System.out.println("没有有效的成绩数据"); } } catch (IOException e) { // 文件不存在或读取错误处理 System.err.println("文件操作错误: " + e.getMessage()); if (e instanceof java.io.FileNotFoundException) { System.err.println("请确认文件 " + filePath + " 是否存在"); } } } }