Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started