Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Scenario There are six cars in each team called Chevy and Ford. One car from eac

ID: 3822464 • Letter: S

Question

Scenario

There are six cars in each team called Chevy and Ford. One car from each team races its opponent on the drag strip. Read in the racing times for the six Chevy cars and then read in the times for the six Ford cars. Store the times into arrays called Chevy[ ] and Ford[ ]. Then list the winner of each pair, giving the number of seconds the winner won by. At the end declare which team won based on which team had the most wins. Below is a sample match.

Enter the times for the Chevy cars: 5.4 7.2 4.0 9.1 5.8 3.9

Enter the times for the corresponding Ford cars: 5.8 6.9 3.9 9.2 5.8 3.8

And the winners are:

Chevy by 0.4 sec

Ford by 0.3 sec

Ford by 0.1 sec

Chevy by 0.1 sec

Tie !

Ford by 0.1 sec

And the winning team is: FORD !

Accept the racing times for each of the Chevy cars into the array Chevy[ ].

Accept the racing times for each of the Ford cars into the array Ford[ ].

Then declare the wining car for each race, giving the winning time in seconds.

If the times are identical, then declare the race was a tie.

Finally, declare which team won the match, assuming a tie is possible

Submit a C++ program with the required comments. You must use at least 2 functions in the program. You can decide what you will use functions for.

The maximum number of points is 45. 10 points will be given for comments for the program and each function.

Explanation / Answer

{ //declare varibles double[] chevy = new double[8]; double[] ford = new double[8];int chevyWins = 0, fordWins = 0; int x, y; double ctotal = 0, chevyaverage = 0; double ftotal = 0, fordaverage = 0; double cwin= 0, fwin = 0; //calculations //input for (x = 0; x < 8; x++) { Console.Write("Enter time for chevy car " + (x + 1) + ":"); chevy[x] = double.Parse(Console.ReadLine()); } for (y = 0; y < 8; y++) { Console.Write("Enter time for ford car " + (y + 1) + ":"); ford[y] = double.Parse(Console.ReadLine()); } for (int i = 0; i < 8; i++) { if (chevy[i] ford[i]) { fordWins++; Console.WriteLine(String.Format("Ford won by {0}", (chevy[i] - ford[i]))); } else { Console.WriteLine("Tie!"); } } if (chevyWins > fordWins) { Console.WriteLine("Chevy Wins the competition!"); } else if (chevyWins
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote