Question: C PROGRAMMING ONLY: 1). Write a loop that subtracts 1 from each element in lowerScores. If the element was already 0 or negative, assign 0
C PROGRAMMING ONLY:
1). Write a loop that subtracts 1 from each element in lowerScores. If the element was already 0 or negative, assign 0 to the element. Ex: lowerScores = {5, 0, 2, -3} becomes {4, 0, 1, 0}
#include
int main(void) { const int SCORES_SIZE = 4; int lowerScores[SCORES_SIZE]; int i = 0;
lowerScores[0] = 5; lowerScores[1] = 0; lowerScores[2] = 2; lowerScores[3] = -3;
for (i = 0; i < SCORES_SIZE; ++i) { printf("%d ", lowerScores[i]); } printf(" ");
return 0; }
2). Find the maximum value and minimum value in milesTracker. Assign the maximum value to maxMiles, and the minimum value to minMiles. Sample output for the given program:
Min miles: -10 Max miles: 40
#include
int main(void) { const int NUM_ROWS = 2; const int NUM_COLS = 2; int milesTracker[NUM_ROWS][NUM_COLS]; int i = 0; int j = 0; int maxMiles = -99; // Assign with first element in milesTracker before loop int minMiles = -99; // Assign with first element in milesTracker before loop
milesTracker[0][0] = -10; milesTracker[0][1] = 20; milesTracker[1][0] = 30; milesTracker[1][1] = 40;
/* Your solution goes here */
printf("Min miles: %d ", minMiles); printf("Max miles: %d ", maxMiles);
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
