Question: CHALLENGE ACTIVITY 4.6.4: Modify an array's elements. Double any element's value that is less than controlValue. Ex: If controlValue = 10, then dataPoints = {2,

CHALLENGE ACTIVITY 4.6.4: Modify an array's elements. Double any element's value that is less than controlValue. Ex: If controlValue = 10, then dataPoints = {2, 12, 9, 20} becomes {4, 12, 18, 20}. 1 test passed 4 6 All tests passed 8 1 import java.util.Scanner; 2 public class StudentScores { 3 public static void main (String [] args) { Scanner scnr = new Scanner(System.in); 5 final int NUM_POINTS = 4; int[] dataPoints = new int[NUM_POINTS] ; 7 int controlValue; int i; 9 10 controlValue = scnr.nextInt(); 11 12 for (i = 0; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
