Java Taskbook Level 2.3
Given an array of integers:
int[] arr = {1, 2, 3, 4, 5};
Find the sum of the squares of the elements of this array.
Given an array of integers:
int[] arr = {1, 2, 3, 4, 5};
Find the arithmetic mean of this array.
Given an array:
int[10] arr;
Use a loop to fill this array with integers from 1
to 10
.