Calculate the average of three exams for five students

Assignment Help C/C++ Programming
Reference no: EM131463531

Lab Assignment

Overview:

This hands-on lab allows you to follow and experiment with the critical steps of developing a program including the program description, Analysis, , Design(program design, pseudocode), Test Plan, and implementation with C code. The example provided uses sequential, repetition statements and nested repetition statements.

Program Description:

This program will calculate the average of 3 exams for 5 students. The program will ask the user to enter 5 student names. For each of the students, the program will ask for 3 exam scores. The student name and the average exam score for each student will be calculated and printed.

Analysis:

The program will consist of two loops. An outer loop for each student and an inner loop for the exams of each student. I will define one String to store student name: StudentName.

I will define three Float variables: Examvalue, Sum, Avg to store exam values, the sum of the exams, and the average of the exams.

The sum will be calculated by this formula: Sum = Sum + Examvalue

For example, if the first value entered was 80.0 and second was 90.0 and the third exam was 100.0: sum = sum + Examvalue = 0.0 + 80.0

sum = 80.0 + 90.0 = 170.0
sum = 170.0 + 100.0 = 270.0
Avg is then calculated as: Avg = sum/3.0
For example 270.0/3.0 = 90.0

A nested repetition loop can be used to loop through each of the 5 students and each of the 3 exams: For (students=0; students <5; students++)

For (exams=0;exams<3;exams++) End For

End For

Sum values will need to be reset for each student to ensure only one student data is used for calculations each time.

Learning Exercises for you to try:

1. Modify the output printf statement so that the average grade is displayed with just three decimals places and so that there is two tabs between the student name and his average grade. Support your experimentation with screen captures of executing the new code.

2. Describes what happens if you don't have the following code Sum = 0.0 inside the for loop. Remove or comment out the line Sum = 0.0

// Sum = 0.0;

Support your experimentation with screen captures of executing the new code.

3. Replace Sum = 0.0 back to where it was before (inside the loop). Modify the code to be able to input an undetermined number of students. Hint: you can prompt the user for the number of students and use that value Or you can use a sentinel loop approach OR you can prompt the user to continue. You will still only have 3 exams for each student. Support your experimentation with screen captures of executing the new code. Submit this code in a separate .txt ( or .c ) file.

4. Prepare a new test table with at least 3 distinct test cases listing input and expected output for the code you created after step 4.

Attachment:- Lab_Assignment.pdf

Reference no: EM131463531

Questions Cloud

What are the advantages of this type of financing : From a corporation's point of view, how does preferred stock differ from common stock? Where do a corporation's retained earnings come from?
Statistics play an important role in program evaluation : Statistics play an important role in program evaluation and assessing gathered data, such as conducting non-parametric tests/analyses.
What are advantages of corporate bonds over long-term loans : For a corporation, what are the advantages of corporate bonds over long-term loans? Describe the three methods used to ensure that funds are available.
What is the domain and what are the potential benefits : What is the domain and what are the potential benefits to be derived from association rule mining. This is high level - not find patterns
Calculate the average of three exams for five students : This program will calculate the average of 3 exams for 5 students. The program will ask the user to enter 5 student names.
Conduct a library search of the occupation : Most public libraries maintain relatively up-to-date collections of occupational or career materials. Begin your library search by looking at the computer.
What are information rules : In your own words, describe how information reduces risk when you make a personal or work-related decision. What are information rules?
Explain the ethical implications of both options : Examine the current legal and regulatory requirements that are present in this situation.Explain the ethical implications of both options.
Explain general security architecture for the company : Determine the most important assets of the company, which must be protected. Determine general security architecture for the company.

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Create program that uses functions and reference parameters

Create program that uses functions and reference parameters, and asks user for the outside temperature.

  Write a program using vectors and iterators

Write a program using vectors and iterators that allows a user to maintain a personal list of DVD titles

  Write the code required to analyse and display the data

Calculate and store the average for each row and column. Determine and store the values for the Average Map.

  Write a webservices application

Write a webservices application that does a simple four function calculator

  Iimplement a client-server of the game

Iimplement a client-server version of the rock-paper-scissors-lizard-Spock game.

  Model-view-controller

Explain Model-View-Controller paradigm

  Design a nested program

How many levels of nesting are there in this design?

  Convert celsius temperatures to fahrenheit temperatures

Write a C++ program that converts Celsius Temperatures to Fahrenheit Temperatures.

  Evaluate and output the value in the given base

Write C program that will input two values from the user that are a Value and a Base with which you will evaluate and output the Value in the given Base.

  Design a base class shape with virtual functions

Design a base class shape with virtual functions

  Implementation of classes

Implementation of classes Chart and BarChart. Class barChart chould display a simple textual representation of the data

  Technical paper: memory management

Technical Paper: Memory Management, The intent of this paper is to provide you with an in depth knowledge of how memory is used in executing, your programs and its critical support for applications.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd