From b5186faacf37a5d9591bc1702ba25f20a2d4eb07 Mon Sep 17 00:00:00 2001 From: Ethan Robert <ethan.rbrt90@gmail.com> Date: Fri, 7 Mar 2025 15:54:04 +0100 Subject: [PATCH] Added threshold average and validation, warning methods to student --- src/tp04/Student.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tp04/Student.java b/src/tp04/Student.java index a64a1ae..a4a60e4 100644 --- a/src/tp04/Student.java +++ b/src/tp04/Student.java @@ -11,6 +11,7 @@ import java.util.Arrays; * @author ethan */ public class Student { + public static final int thresholdAvg = 5; private Person pers; private double[] grades; -- GitLab