Calculate the average for each student and for each exam

Assignment Help Basic Computer Science
Reference no: EM13306205

The original program is supposed to ask the user to enter 3 grades for 5 students, and then calculate the average for each student and for each exam:
(MODIFICATIONS AT BOTTOM)

_______________________________________________________________________________________
#include <stdio.h>
int main()
{
int grades[5][3];
int student, exam;
int sum;
float average;
for (exam=0; exam<3; exam++){
printf(" Exam %i \n", exam+1);
printf("-----------------------\n");
for( student = 0; student < 5; student++){
printf("Grade for student %i: ", student + 1);
scanf("%i", &grades[student][exam]);
}
printf("\n"); }
printf("\n");
for (exam=0; exam < 3; exam++){
sum = 0;
for( student = 0; student < 5; student++){
sum += grades[student][exam];}
average = sum / 5.0;
printf("The average for exam %i is: %3.2f \n", exam + 1, average);
}
printf("\n");
for( student = 0; student < 5; student++){
sum = 0;//make sure the sum is cleared when we start a new average
for (exam= 0; exam < 3; exam++){
sum += grades[student][exam];}
average = sum / 3.0;
printf("The average for student %i is: %3.2f \n", student + 1, average);
}
printf("\n");
return 0;
}

 

Reference no: EM13306205

Questions Cloud

What is this error : The following function is supposed to return true if any element of the array x has the value 0 and false otherwise. It has an error. What is this error?
The way forward are important aspects of leadership : One function of a leader is to provide the vision for the organization they lead. Being a role model and leading the way forward are important aspects of leadership.
Use this information to find a tighter bound on p : If X is a non-negative random variable with E(X) = ?, then Markov's inequality tells us that for every a, P(X ? a) ? ?/a. As we saw in class, this bound is sometimes very loose. In this problem we'll look at a situation in which extra information ..
What is cloud computing : What is cloud computing? How far back can you find the first usage of the term? Give examples of typical applications of cloud computing.
Calculate the average for each student and for each exam : The original program is supposed to ask the user to enter 3 grades for 5 students, and then calculate the average for each student and for each exam.
Enhancing organizational efficiency and effectiveness : One page response APA style please.Enhancing organizational efficiency and effectiveness in large organizations can be accomplished by wisely grouping activities in such way as to avoid overlapping, reducing redundancy and to enhance cooperation, com..
Write a program that calculates a savings accounts yearly : Write a program that calculates a savings accounts yearly savings amount. The savings account pays an interest rate of 3% yearly.
Calculate how many minutes it takes for the runner to run : A sprinter runs using a force of 200 N and a power output of 600 W. Calculate how many minutes it takes for the runner to run 1 km.
Determine what is the design volume of the aeration basin : Assume the microorganisms are 55 percent efficient at converting food to biomass, the organisms have a first-order death rate constant of 0.05/day, and the microbes reach half of their maximum growth rate when the BOD5 concentration is 10 mg/L

Reviews

Write a Review

Basic Computer Science Questions & Answers

  When the jmpc field in the microinstruction is enabled

Assume that when the JMPC field in the microinstruction is enabled (set), MBR is ORed with NEXT_ADDRESS to determine the address of the next microinstruction to be executed

  Sequence of events necessary to establish communication

Multiple KDC Domains to chain of three KDC. In other words, suppose that Alice wants to talk to Boris through a chain of 3 KDCs. Provide sequence of events necessary to establish communication.

  What is the value of v_flag

What is the value of v_flag when the following PL/SQL block is executed successfully?

  Calculate charges to determine the charge for each customer

A parking garage charges a $2.00 minimum fee to park for up to three hours. The garage charges an additional .50 per hour for each hour or part thereof in excess of three hours.

  What information do you need to be able to retrieve

What information do you need to be able to retrieve every record from a hashed file in ascending key order?

  Web authoring tools and other software

Web authoring tools and other software

  Use the sql command line in oracle to perform

One of a DBA's primary responsibilities is to create and manage database user accounts and to grant or revoke access privileges as needed. Users should be able to access or modify only those parts of the database that they need to perform their jo..

  Program that reads a file of computer data names computers

write a program that reads a file of computer data names computers.txt. creates an array of Computer objects.

  What is the minimum required frame length for this ethernet

Assume that two nodes in a 10Mbps Ethernet cable are 1200 meters apart. Also assume that the signal propagation speed is 2 x 10 8 meters/second. What is the minimum required frame length for this Ethernet?

  Who is holding return real time big data analysis

Who is holding return realtime bigg data analyssis? what is the future of data big?

  Explain main points to write in the communications plan

Recognize the main points you would write in the communications plan at this point in project. What suggestions would you give your project team to aid it manage user expectations?

  Create a class to represent a triangle by storing

Create a class to represent a triangle by storing the lengths of its sides. Make the data members private and provide the typical get/set (accessor/mutator) routines associated with your data members.

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