mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 22:15:15 +00:00
10 lines
198 B
Java
10 lines
198 B
Java
public class U6_L5_Activity_Three {
|
|
|
|
public static double avg(int[] arr) {
|
|
double s = 0;
|
|
for (int n : arr) {
|
|
s += n;
|
|
}
|
|
return s / arr.length;
|
|
}
|
|
}
|