Question

In: Computer Science

Overview For this assignment, write a program that will calculate the quiz average for a student...

Overview

For this assignment, write a program that will calculate the quiz average for a student in the CSCI 240 course. The student's quiz information will be needed for later processing, so it will be stored in an array.

For the assignment, declare one array that will hold a maximum of 12 integer elements (ie. the quiz scores).

It is recommended that this program be written in two versions. The first version of the program will read a set of quiz scores from standard input (the keyboard), as has been done since the start of the semester. The second version of the program will alter the first version so that the program reads from an input file, rather than standard input. The second version is the only one that will be handed in for grading.

Version 1

As mentioned above, this version of the program will read the set of quiz scores from standard input. A quiz score of -1 will signal the end data.

NOTE: all of the functions mentioned in this logic are described below.

Declare an array of integers and an integer variable to hold the number of quizzes that have been completed. If any other variables are needed, those should also be declared.

Fill the array by calling the buildQuizArray() function. The buildQuizArray() function returns the number of quiz scores that it read. This returned value should be saved in the the integer variable that holds the number of quizzes that have been completed.

Call the calcQuizAverage() function to calculate the student's quiz average. The calculated quiz average that is returned from the calcQuizAverage() function should be displayed with 2 digits after the decimal point and an appropriate label.

Display the student's quiz scores by calling the printQuizArray() function. Use a title such as "Quiz Scores".

Functions to write and use

Write and use the following 5 functions in the program.

int buildQuizArray( int quizArray[] )

This function will fill the array with the quiz scores.

It takes as its arguments an array of integers that will hold the quiz scores. It returns an integer that is equal to the number of quiz scores that were read. Note about the return value: this value is important because it's possible that the student has not completed the semester and therefore has not taken all 12 quizzes yet.

The function should start by declaring any variables that are needed. At a minimum, there should be two integers: a subscript and another to hold the quiz score that is entered by the user.

Initialize the subscript to the beginning of the array.

Get the first quiz score from the user. Make sure to indicate that a quiz score of -1 will end the input.

In a loop that will execute as long as the quiz score is not -1, put the quiz score into the array at the subscript position, increment the subscript to the next spot in the array, and get the next quiz score from the user.

Finally, return the number of quizzes that were placed in the array (think about the subscript).

void printQuizArray( string title, int quizArray[], int numberOfQuizzes )

This function will display the information for the quizzes that have been completed.

It takes three arguments: the first argument is a string that holds the title for the report that is being displayed, the second argument is an array of integers that holds the quiz scores, and the third argument is an integer that holds the number of quiz scores in the array.

It returns nothing.

The function should first display the string argument followed by a line of dashes on the next line.

In a loop that executes numberOfQuizzes number of times, display the quiz number and quiz score out of 10 points.

Use the following as a basic format for the output (this assumes that the string argument holds "Quiz Scores" and that numberOfQuizzes holds the value 5):

Quiz Scores
----------------
Quiz 1:     4/10
Quiz 2:    10/10
Quiz 3:     5/10
Quiz 4:    10/10
Quiz 5:     8/10

double calcQuizAverage( int quizArray[], int numberOfQuizzes )

This function will calculate a student's quiz average.

It takes two arguments: the first argument is an array of integers that holds the quiz scores, and the second argument is an integer that holds the number of quiz scores in the array.

It returns a double: the calculated quiz average.

The function should start by executing a loop that will calculate the sum of the quiz scores in the array.

If the student has taken more than two quizzes, the quiz average is calculated as follows (NOTE: the formula is long. Make sure you're getting the entire formula):

(sum of quiz scores - sum of 2 lowest quiz scores) / (10 * (number of quizzes - 2)) * 100

Notice that the sum of the two lowest quiz scores is part of the formula. This sum can easily be found by sorting the quiz scores in ascending order and then adding up the values at positions [0] and [1] of the array. However, avoid changing the array argument that is passed to the function because the order that the quiz scores were entered by the user must be maintained. Instead, create an array of twelve integers and call the copyArray() function that is described below to copy the original values from the array argument into the new array. Call the sortArray() function to sort the new array and then calculate the sum of the two lowest quiz scores using the new array.

If the student has taken two quizzes or fewer, the quiz average is calculated as follows:

sum of quiz scores / (10 * number of quizzes) * 100

Once the quiz average has been calculated, it should be returned.

void sortArray( int array[], int numberOfQuizzes )

This function will use the selection sort algorithm that was presented in lecture to sort the array in ASCENDING order.

It takes two arguments: the first argument is an array of integers that holds the quiz scores, and the second argument is an integer that holds the number of quiz scores in the array.

It returns nothing.

void copyArray( int destination[], int source[], int numberOfValues )

This function will copy a specific number of values from one array into another array.

It takes three arguments: the first argument is an array of integers that values will be copied into, the second argument is an array of integers that values will be copied from, and the third argument is an integer that holds the number of values to be copied.

It returns nothing.

In a loop that executes numberOfValues number of times, copy a value from the source array into the corresponding location in the destination array.

Version 1 Program Requirements:

  1. The array should be able to hold 12 elements. Use a symbolic constant to represent the maximum size of the array.

  2. The array has the capability to hold 12 elements, however, that does not mean that it will all be used. This is the reason that the number of elements in the array is being passed to the printQuizArray, calcQuizAverage, sortArray, and copyArray functions. This value is the return value from buildQuizArray.

Version 1 Output:

Run 1

Enter your score for quiz 1 (-1 to quit): 10
Enter your score for quiz 2 (-1 to quit): 0
Enter your score for quiz 3 (-1 to quit): 8
Enter your score for quiz 4 (-1 to quit): 6
Enter your score for quiz 5 (-1 to quit): 9
Enter your score for quiz 6 (-1 to quit): -1

Your quiz average is 90.00%

Quiz Scores
----------------
Quiz  1:   10/10
Quiz  2:    0/10
Quiz  3:    8/10
Quiz  4:    6/10
Quiz  5:    9/10

Run 2

Enter your score for quiz 1 (-1 to quit): 6
Enter your score for quiz 2 (-1 to quit): 7
Enter your score for quiz 3 (-1 to quit): -1

Your quiz average is 65.00%

Quiz Scores
----------------
Quiz  1:    6/10
Quiz  2:    7/10

Run 3

Enter your score for quiz 1 (-1 to quit): 10
Enter your score for quiz 2 (-1 to quit): 10
Enter your score for quiz 3 (-1 to quit): 0
Enter your score for quiz 4 (-1 to quit): 6
Enter your score for quiz 5 (-1 to quit): 7
Enter your score for quiz 6 (-1 to quit): 8
Enter your score for quiz 7 (-1 to quit): 6
Enter your score for quiz 8 (-1 to quit): 0
Enter your score for quiz 9 (-1 to quit): 10
Enter your score for quiz 10 (-1 to quit): 8
Enter your score for quiz 11 (-1 to quit): 10
Enter your score for quiz 12 (-1 to quit): 8
Enter your score for quiz 13 (-1 to quit): -1

Your quiz average is 83.00%

Quiz Scores
----------------
Quiz  1:   10/10
Quiz  2:   10/10
Quiz  3:    0/10
Quiz  4:    6/10
Quiz  5:    7/10
Quiz  6:    8/10
Quiz  7:    6/10
Quiz  8:    0/10
Quiz  9:   10/10
Quiz 10:    8/10
Quiz 11:   10/10
Quiz 12:    8/10

Version 2

This is the version of the program that will be submitted for grading. It does the same thing as Version 1 of the program, but the data will be read from an input file rather than standard input.

The majority of the changes for this version of the program will be made in the buildQuizArray function. The two changes that are not in buildQuizArray are to add #include <fstream> and #include <cstdlib> to the top of the code. The #includes are needed so that files can be used in the program.

Input File

The input for this version of the program will be read from a file named quizscores.txt. The file consists of a set of records that contain the quiz score that a student earned on a quiz in CSCI 240. Each record represents one quiz. The file resembles the following:

10
0
8
6
9

Changes to buildQuizArray

ifstream infile;
infile.open( "quizscores.txt" );

The open statement will open a file named quizscores.txt.

Windows Users: the quizscores.txt file MUST be located in the same directory as the CPP file.

Mac Users: there are two options available to handle the input file.

if ( infile.fail() )
   {
   cout << "The quizscores.txt input file did not open";
   exit(-1);
   }

If version 1 of the program had something like:

cout << "Enter the quiz score (-1 to quit): ";
cin >> num;
  

In version 2 of the program, it should now be:

infile >> num;
while( infile )

As long as there is information in the file, the input file stream variable will remain valid (or true). Once the end of the data has been reached, the stream will become invalid (or false). Note: this test is only successful AFTER an attempt has been made to read data from the file. This means that a standard read loop pattern with a priming and secondary read should be followed.

infile.close();
  1. Add a declaration for an input file stream to the variable declarations within buildQuizArray. For example:

  2. Before getting the first quiz score from the user, open the input file. This will connect a variable in the program with the file of quiz scores.

    • Option 1: put in the set of double quotes ("") between the parenthesis for the open command, find where the file has been saved on your Mac, and then drag and drop the file in between the quotes. It should place the name of the file, including the complete path of where it is located on your Mac, between the quotes. If you use this option, before handing in the CPP file, remove the path name from the file name so that it only has quizscores.txt between the double quotes.

    • Option 2: Build the Program one time. In the Project Navigator (it's on the left side of the screen on my version of XCode), there should be two folders: one with the name of the project and another with the name Products. Click on the Products folder. There should be a file with the name of the project. Click on the file in the Products folder. In the File Inspector (it's on the right side of the screen on my version of XCode), there should be a "Full Path" label that is followed by the complete path where the executable for the project will be saved. Open this path in Finder by clicking on the small arrow after the path name. Put the quizscores.txt file in the location that opens in Finder. If you use this option, the open statement can be used as shown above.

  3. Once the file has been opened, make sure that it opened correctly. This is an important step because a file cannot be processed if it doesn't exist or open correctly. To test if the file opened correctly:

  4. In version 1 of the program, cin was used to get data from standard input (the keyboard). Since this version of the program is reading input from a file rather than standard input, substitute the name of the input file stream (infile in the example above) in place of cin. The cout statements that display a prompt for the user are not needed with the data being read from a file.

  5. The input file does not have a quiz score -1 to indicate the end of data. Instead, the loop should test to see if there is data in the file. One way to do this is to use the input file stream variable as a boolean variable:

  6. Finally, once all the data has been read from the file, the file should be closed. This should be placed after the closing curly brace for the loop but before the return statement for the function. To do this, execute the following:

Version 2 Output

The output that is produced with the quizscores.txt input file:

Your quiz average is 87.00%

Quiz Scores
----------------
Quiz  1:    9/10
Quiz  2:   10/10
Quiz  3:   10/10
Quiz  4:    9/10
Quiz  5:    0/10
Quiz  6:    4/10
Quiz  7:   10/10
Quiz  8:    8/10
Quiz  9:   10/10
Quiz 10:    0/10
Quiz 11:    7/10
Quiz 12:   10/10

Version 2 Program Requirements:

  1. Add #include <fstream> and #include <cstdlib> at the top of the program.

  2. Copy the input file and write the program so that it reads the data from the current directory (ie. don't specify a file path).

  3. As with program 6, each of the functions MUST have a documentation box that describes the function. This is the last reminder about function documentation that will appear in the assignment write-ups.

  4. Hand in a copy of the source code using Blackboard

Solutions

Expert Solution

I have implemented the Version1 and Version2 per the given description.

Please find the following Code Screenshot, Output, and Code.

ANY CLARIFICATIONS REQUIRED LEAVE A COMMENT

Version 1:

1.OUTPUT :

3.CODE :

#include<iostream>
#include<iomanip>
using namespace std;
int buildQuizArray( int quizArray[] ){
        int t,count=0;;
        cout<<"Enter your score for quiz"<<(count+1)<<"(-1 to quit):";
        cin>>t;
        while(t!=-1){
                quizArray[count]=t;
                count++;
                cout<<"Enter your score for quiz"<<(count+1)<<"(-1 to quit):";
        cin>>t;
        }
        return count;
}
void printQuizArray( string title, int quizArray[], int numberOfQuizzes ){
        cout<<title;
        for(int i=0;i<numberOfQuizzes;i++){
                cout<<"Quiz "<<(i+1)<<":  "<<quizArray[i]<<"/"<<10<<endl;
        }
}
void copyArray( int destination[], int source[], int numberOfValues )
{
        for(int i=0;i<numberOfValues;i++)
                destination[i]=source[i];
}
void sortArray( int array[], int numberOfQuizzes ){
        int n=numberOfQuizzes,i,j,t;
        for (i = 0; i < n-1; i++)      
        {
    // Last i elements are already in place  
    for (j = 0; j < n-i-1; j++)  
        if (array[j] > array[j+1]) { 
            t=array[j+1];
                        array[j+1]=array[j];
                        array[j]=t;
                }
        }               
}
double calcQuizAverage( int quizArray[], int numberOfQuizzes ){
        int temp[12],i;
        double sum=0;
        
        //if the number of quiz are less than or equal to 2
        if(numberOfQuizzes<=2){
                for(i=0;i<numberOfQuizzes;i++)
                        sum=sum+quizArray[i];
                return sum/(10*numberOfQuizzes)*100;
        }
        copyArray(temp,quizArray,numberOfQuizzes);
        
        sortArray(temp,numberOfQuizzes);
        /*for(i=0;i<numberOfQuizzes;i++)
                cout<<"\t"<<temp[i];*/
        for(i=2;i<numberOfQuizzes;i++)
                        sum=sum+temp[i];
        //cout<<endl<<sum<<endl;
                return ((sum/(10*(numberOfQuizzes-2)))*100);
}

int main(){
        int quizArray[12],numberOfQuizzes;
        double average;
        string title="Quiz Scores \n----------\n";
        numberOfQuizzes=buildQuizArray(quizArray);
        average=calcQuizAverage(quizArray,numberOfQuizzes);
        cout<<"Your quiz average is "<<fixed<<setprecision(2)<<average<<"%"<<endl;
        printQuizArray(title,quizArray,numberOfQuizzes);
}

version 2:

Output:

CODE:

#include<iostream>
#include<iomanip>
#include <fstream>
using namespace std;
int buildQuizArray( int quizArray[] ){
        int t,count=0;;
        ifstream infile;
        infile.open( "quizscores.txt" );
        infile >> t;

        while(t!=-1&&infile){
                quizArray[count]=t;
                count++;
        infile >> t;
        }
        return count;
}
void printQuizArray( string title, int quizArray[], int numberOfQuizzes ){
        cout<<title;
        for(int i=0;i<numberOfQuizzes;i++){
                cout<<"Quiz "<<(i+1)<<":  "<<quizArray[i]<<"/"<<10<<endl;
        }
}
void copyArray( int destination[], int source[], int numberOfValues )
{
        for(int i=0;i<numberOfValues;i++)
                destination[i]=source[i];
}
void sortArray( int array[], int numberOfQuizzes ){
        int n=numberOfQuizzes,i,j,t;
        for (i = 0; i < n-1; i++)      
        {
    // Last i elements are already in place  
    for (j = 0; j < n-i-1; j++)  
        if (array[j] > array[j+1]) { 
            t=array[j+1];
                        array[j+1]=array[j];
                        array[j]=t;
                }
        }               
}
double calcQuizAverage( int quizArray[], int numberOfQuizzes ){
        int temp[12],i;
        double sum=0;
        
        //if the number of quiz are less than or equal to 2
        if(numberOfQuizzes<=2){
                for(i=0;i<numberOfQuizzes;i++)
                        sum=sum+quizArray[i];
                return sum/(10*numberOfQuizzes)*100;
        }
        copyArray(temp,quizArray,numberOfQuizzes);
        
        sortArray(temp,numberOfQuizzes);
        /*for(i=0;i<numberOfQuizzes;i++)
                cout<<"\t"<<temp[i];*/
        for(i=2;i<numberOfQuizzes;i++)
                        sum=sum+temp[i];
        //cout<<endl<<sum<<endl;
                return ((sum/(10*(numberOfQuizzes-2)))*100);
}

int main(){
        int quizArray[12],numberOfQuizzes;
        double average;
        string title="Quiz Scores \n----------\n";
        numberOfQuizzes=buildQuizArray(quizArray);
        average=calcQuizAverage(quizArray,numberOfQuizzes);
        cout<<"Your quiz average is "<<fixed<<setprecision(2)<<average<<"%"<<endl;
        printQuizArray(title,quizArray,numberOfQuizzes);
}

Related Solutions

Overview For this assignment, write a program that will calculate the quiz average for a student...
Overview For this assignment, write a program that will calculate the quiz average for a student in the CSCI 240 course. The student's quiz information will be needed for later processing, so it will be stored in an array. For the assignment, declare one array that will hold a maximum of 12 integer elements (ie. the quiz scores). It is recommended that this program be written in two versions. The first version of the program will read a set of...
Overview For this assignment, write a program that will calculate the quiz average for a student...
Overview For this assignment, write a program that will calculate the quiz average for a student in the CSCI course. The student's quiz information will be needed for later processing, so it will be stored in an array. For the assignment, declare one array that will hold a maximum of 12 integer elements (ie. the quiz scores). It is recommended that this program be written in two versions. The first version of the program will read a set of quiz...
Overview For this assignment, write a program that will calculate the quiz average for a student...
Overview For this assignment, write a program that will calculate the quiz average for a student in the CSCI 240 course. The student's quiz information will be needed for later processing, so it will be stored in an array. For the assignment, declare one array that will hold a maximum of 12 integer elements (ie. the quiz scores). It is recommended that this program be written in two versions. The first version of the program will read a set of...
For this assignment, write a program that will calculate the quiz average for a student in...
For this assignment, write a program that will calculate the quiz average for a student in the CSCI 240 course. The student's quiz information will be needed for later processing, so it will be stored in an array. For the assignment, declare one array that will hold a maximum of 12 integer elements (ie. the quiz scores). It is recommended that this program be written in two versions. The first version of the program will read a set of quiz...
For this assignment, write a program that will calculate the quiz average for a student in...
For this assignment, write a program that will calculate the quiz average for a student in the CSCI 240 course. The student's quiz information will be needed for later processing, so it will be stored in an array. For the assignment, declare one array that will hold a maximum of 12 integer elements (ie. the quiz scores). It is recommended that this program be written in two versions. The first version of the program will read a set of quiz...
OverviewFor this assignment, write a program that will calculate the quiz average for a student in...
OverviewFor this assignment, write a program that will calculate the quiz average for a student in the CSCI 240 course. The student's quiz information will be needed for later processing, so it will be stored in an array.For the assignment, declare one array that will hold a maximum of 12 integer elements (ie. the quiz scores).It is recommended that this program be written in two versions. The first version of the program will read a set of quiz scores from...
*****For C++ Program***** Overview For this assignment, write a program that uses functions to simulate a...
*****For C++ Program***** Overview For this assignment, write a program that uses functions to simulate a game of Craps. Craps is a game of chance where a player (the shooter) will roll 2 six-sided dice. The sum of the dice will determine whether the player (and anyone that has placed a bet) wins immediately, loses immediately, or if the game continues. If the sum of the first roll of the dice (known as the come-out roll) is equal to 7...
Programming II: C++ - Programming Assignment Vector Overloads Overview In this assignment, the student will write...
Programming II: C++ - Programming Assignment Vector Overloads Overview In this assignment, the student will write a C++ program that overloads the arithmetic operators for a pre-defined Vector object. When completing this assignment, the student should demonstrate mastery of the following concepts: · Object-oriented Paradigm · Operator Overloading - Internal · Operator Overloading - External · Mathematical Modeling Assignment In this assignment, the student will implement the overloaded operators on a pre-defined object that represents a Vector. Use the following...
Overview For this assignment, write a program that uses functions to simulate a game of Craps....
Overview For this assignment, write a program that uses functions to simulate a game of Craps. Craps is a game of chance where a player (the shooter) will roll 2 six-sided dice. The sum of the dice will determine whether the player (and anyone that has placed a bet) wins immediately, loses immediately, or if the game continues. If the sum of the first roll of the dice (known as the come-out roll) is equal to 7 or 11, the...
Overview In this assignment, you will write a program to track monthly sales data for a...
Overview In this assignment, you will write a program to track monthly sales data for a small company. Input Input for this program will come from two different disk files. Your program will read from these files by explicitly opening them. The seller file (sellers.txt) consists of an unknown number of records, each representing one sale. Records consist of a last name, a first name, a seller ID, and a sales total. So, for example, the first few records in...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT