Add files via upload

This commit is contained in:
2025-07-17 21:17:50 +08:00
committed by GitHub
parent ecdc668ae3
commit 4e240c6dc9
25 changed files with 1313 additions and 200 deletions
+8 -1
View File
@@ -22,4 +22,11 @@ bool dataModified = false; // 数据是否已修改
float overallAverageScore = 0.0; // 全体学生平均分
float highestScore = 0.0; // 最高分
float lowestScore = 100.0; // 最低分
bool statsNeedUpdate = true; // 统计信息是否需要更新
bool statsNeedUpdate = true; // 统计信息是否需要更新
// 排序参数
int currentSortCriteria = 0; // 当前排序依据
int currentSortOrder = 0; // 当前排序顺序
// 统计缓存
StatisticsCache statsCache = {false, {0}, {0}, {{0}}, 0, 0}; // 统计分析缓存