Question: C++ Help with this code. Question: Double any element's value that is less than minVal. Ex: If minVal = 10, then dataPoints = {2, 12,

C++ Help with this code.

Question:

Double any element's value that is less than minVal. Ex: If minVal = 10, then dataPoints = {2, 12, 9, 20} becomes {4, 12, 18, 20}.

Current Code: Please only chnage highlighted section:

#include using namespace std;

int main() { const int NUM_POINTS = 4; int dataPoints[NUM_POINTS]; int minVal = 0; int i = 0;

dataPoints[0] = 2; dataPoints[1] = 12; dataPoints[2] = 9; dataPoints[3] = 20;

minVal = 10;

/* Your solution goes here */

for (i = 0; i < NUM_POINTS; ++i) { cout << dataPoints[i] << " " ; } cout << endl;

return 0; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!