Repetition structure that includes a nested

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

Assignment:

Create your own While-End (or For-End) repetition structure that includes a nested if-then selection structure. You decide the theme. You should provide both the pseudocode and the flowchart of your example. Be sure to provide an overview of what your repetition structure is doing. Provide a walk-through of your code and the values at each iteration of the loop

Details:

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 average exam score for each student will be calculated and printed.

Analysis:

I will use sequential and repetition programming statements. 
I will define one String to store student name: StudentName.
I will define three Float numbers: 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.


Test Plan:

To verify this program is working properly the input values could be used for testing:

Test Case

Input

Expected Output

1

Studentname=Chris
Examvalue1=80.0
Examvalue2=90.0
Examvalue3=100.0
Studentname=John
Examvalue1=70.0
Examvalue2=90.0
Examvalue3=80.0
Studentname=Sally
Examvalue1=100.0
Examvalue2=100.0
Examvalue3=100.0
Studentname=Pat
Examvalue1=50.0
Eexamvalue2=70.0
Examvalue3=60.0

Studentname=Sam
Examvalue1=90.0
Examvalue2=95.0
Examvalue3=100.0

Average for Chris is 90.0
Average for John is 80.0
Average for Sally is 100.0

Average for Pat is 60.0
Average for Sam is 95.0

Pseudocode:

// This program will calculate the average of 3 exams for 5 students

// Declare variables
Declare StudentName as String
Declare ExamValue, Sum, Avg as Float

// Loop through 5 Students
For (students=0; students <5 ; students++)
// reset Sum to 0
Set Sum =0.0 
Print "Enter Student Name"
Input StudentName
// Nested Loop for Exams
For (exams=0; exams < 3; exams++)
Print "Enter exam grade: \n"
Input ExamValue
Set Sum = Sum + ExamValue
End For
Set Avg = Sum/3.0
Print "Average for " + StudentName + " is " + Avg
End For

Flow Chart:

C Code

The following is the C Code that will compile in execute in the online compilers.

// C code

// This program will calculate the average of 3 exams for 5 students.

// Developer: Faculty CMIS102

// Date: Jan 31, 2014

#include <stdio.h>

int main ()

{

/* variable definition: */

char StudentName[100];

float ExamValue, Sum, Avg;

int students,exams;

// Loop through 5 Students

for (students=0; students <5 ; students++)

{

// reset Sum to 0

Sum =0.0;

printf("Enter Student Name \n");

scanf("%s", StudentName);

// Nested Loop for Exams

for (exams=0; exams < 3; exams++)

{

printf ("Enter exam grade: \n");

scanf("%f", &ExamValue);

Sum = Sum + ExamValue;

}

Avg = Sum/3.0;

printf( "Average for %s is %f\n",StudentName,Avg);

}

return 0;

}

Setting up the code and the input parameters in ideone.com:

Note the Student and ExamValues for this run were:
John: 90.0 80.0 100.0
Jim: 80.0 70.0 90.0
Joe: 70.0 100.0 100.0
Sally: 100.0 95.0 91.0
Sam: 30.0 54.0 68.0 
You can change these values to any valid integer values to match your test cases.

Results from running the programming at ideone.com:

Learning Exercises for you to try:

What would you change in the design and the code if you wanted to input 10 students and 5 exams?

What is the line of code doing?


char StudentName[100];

(Hint: We haven't covered arrays, but a String can be thought of as an array of characters) ?

What would happen if you moved the Set Sum = 0.0 from inside the for loop to right after the declaration. For example:

// Declare variables
Declare StudentName as String
Declare ExamValue, Sum, Avg as Float

// Initialize Sum
Set Sum = 0.0;

CODE:

// C code

// This program will calculate the average of 3 exams for 5 students.

// Developer: Faculty CMIS102

// Date: Jan 31, 2014

#include <stdio.h>

int main ()

{

  /* variable definition: */

charStudentName[100];

floatExamValue, Sum, Avg;

intstudents,exams;

   // Loop through 5 Students

for (students=0; students <5 ; students++)

  {

     // reset Sum to 0

     Sum =0.0; 

printf("Enter Student Name \n");

scanf("%s", StudentName);  

     // Nested Loop for Exams

for (exams=0; exams < 3; exams++)

    {

printf ("Enter exam grade: \n");

scanf("%f", &ExamValue);

        Sum = Sum + ExamValue;

    }  

Avg = Sum/3.0;

printf( "Average for %s is %f\n",StudentName,Avg);

  }

return 0;

}

Reference no: EM13844163

Questions Cloud

What is the mole of the hydroxide : what is the mole of the hydroxide
What can financial statement ratios tell the fscj business : What can financial statement ratios tell the FSCJ business student/employment candidate about the suitability of the organization as an employer?
Which of the statements about the volatility is not true : Which of the following statements about the volatility is not true. the implied volatility often differs across options with different exercise prices
Find the net electric field : Find the net electric field
Repetition structure that includes a nested : Create your own While-End (or For-End) repetition structure that includes a nested if-then selection structure. You decide the theme. You should provide both the pseudocode and the flowchart of your example. Be sure to provide an overview of what ..
Analysis of the organization : Analysis of the organization, Describe the organization's: Facility physical settings, Patient or client base, Level of clinical activity, Organization structure
The lower breakeven and greater profit potential : Consider two put options differing only by exercise price. The one with the higher exercise price has Select one: a. the lower breakeven and lower profit potential b. the lower breakeven and greater profit potential c. the higher breakeven and gre..
Discuss types of sources a company can use to raise capital : Discuss the types of sources a company can use to raise capital. Do these different sources of capital have different costs? Why or why not?
Compare and contrast how you would expect nursing leaders : Select an issue from the following list: nursing shortage and nurse turn-over, nurse staffing ratios, unit closures and restructuring, use of contract employees (i.e., registry and travel nurses), continuous quality improvement and patient satisfa..

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Write a program that allows users to enter a dollar amount

Write a program that allows users to enter a dollar amount for their bank account balance at the beginning of the month.

  Write definitions of the functions to overload the operators

Write the definitions of the functions to overload the operators defined in parts a to c and write  a  test  program  that  tests  various  operations  on  the class rectangleType.

  Define an integer array with five entries

In the main function, define an integer array with five entries and assign values to the entries. Display the entries in the order in which they occur within the array.

  What output is produced by the following program

What output is produced by the following program?

  Creates a macro to calculate the area

Build a program that creates a macro to calculate the area of a circle using the formula area = pie x radius x radius. In the same program, prompt the user to enter a circle's radius. Use the macro to calculate the circle's area and display the re..

  Assignment 1write a program using vectors and iterators

assignment 1write a program using vectors and iterators that allows a user to maintain a personal list of dvd titles.

  Write a program that reads in an integer

Write a program that prompts the user for a measurement in meters, and then converts it in to miles, feet, and inches.

  Square root of a number n

USING C++ the square root of a number N can be approximated by repeated calculation using the formula NG=.5(LG+N/LG) where NG stands for next guess and LG stands for last guess

  What constructors do and when they are executed

Explain what constructors do and when they are executed. Explain the two types of constructors. Provide an example class that includes both types of constructor functions and demonstrate how an object would be instantiated using both types of constru..

  Program that computes the total price of tickets

Write a program that computes the total price of tickets that a customer orders. The program should prompt the user for the number of the destination city and the number of tickets desired.

  Write a c function that converts a character to upper case.

Write a C function that converts a character to upper case. The function should have the prototype char to_upper(char ch); The characters given as input to the function are assumed to be in the sets {'a', ..., 'z'} and {'A', ... , 'Z' }. Do not use a..

  Program that will calculate the heat transfer of a substance

write a program that will calculate the heat transfer of a substance (water) given three different shapes. The user has to be able to input the type of shape, so that the computer can calculate area, and plug it back in to the equation for heat trans..

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