Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~422 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for eogunlolu

Write a program that does the following in C++ Need help •The program should keep an array of 12 structures. Each element is for a different cyclist. •Functions to accomplish the following: ◦When the program runs it should ask the user to enter the data for each cyclist. ◦It should …

Member Avatar for rubberman
-1
197
Member Avatar for eogunlolu

//This program is supposed to read 20 scores from an input file and initialize them to an array //then print the components into 2 separate output files #include <fstream> #include <string> using namespace std; const int ARRAY_SIZE = 20; void printArray1(int scoresArray[], int sizeX); void printArray2(int scoresArray[], int sizeY); ofstream …

Member Avatar for eogunlolu
0
225