System.out.print("Input running distance for day " + (i+1) + ": ");
distances[i] = input.nextDouble();
}
System.out.println(Arrays.toString(distances));
}
}
Explanation:
The solution code is written in Java.
Firstly, create a Scanner object to get user input for running distance (Line 6). Next, declare a distances array and set the array size to 7 because we intend to use this array to hold running distance for 7 days per week.
Next, use the for loop that run for 7 times to repeatedly prompt user to input running distance for each day and store each value to the array distances (Line 9 -12).
At last, display the array to console terminal (Line 14).
Companies want people who know more about them and rather have someone who is interested in the company than someone who is just looking for a way to get payed.