Calculate the average grade

Assignment Help JAVA Programming
Reference no: EM132100012

Please Read Entire Post.

Modify the below code so that it uses custom functions to add grades to the array, print the grades entered, calculate the average grade (arithmetic mean, not letter grade), and report the highest and lowest grade entered.

This version of the program does not need to use heap memory, though you are welcome to do so.

The program should allow the user to indicate when he or she is done entering grades (since the user may not have grades to fill the whole array). When the user is done entering grades, the program should print out the grades entered by the user.

The program should also display the average grade, highest grade, and lowest grade.

#include "stdio.h"

int main(void)

{

//initialize array

int arr[100];

//initialize variables

int i=0, j=0, n=0;

//infinite loop which will stop when user enters -1

while(n != -1)

{

printf("Enter percentage grade(0-100). Enter -1 to stop: ");

//read grade

scanf("%d",&n);

//if user entered grade is not -1

if(n != -1)

{

//save it to array

arr[i++] = n;

}

//if user entered -1, then exit this loop

else

{

break;

}

}

printf("\n\nThe grades are: \n");

//loop which will iterate till no:of user entered grades

for(j=0; j

{

//print the grade

printf("%d ",arr[j]);

}

return 0;

}

Reference no: EM132100012

Questions Cloud

Control the functionality of a body system : How can something as simple as an electrolyte control the functionality of a body system?"
Create a class called palindrome : Create a class called Palindrome. In your Palindrome class, create a method called reverse() which takes a string argument.
Shoulder extension and elbow extension : Which muscle are the primary movers for shoulder extension and elbow extension?
Lidocaine block sodium ion channels in neurons plasma : Local anesthetic drugs such as lidocaine block sodium ion channels in neurons plasma membrane from opening.
Calculate the average grade : Modify the below code so that it uses custom functions to add grades to the array, print the grades entered, calculate the average grade.
Write a python function square_all that takes one parameter : Write a python function square_all that takes one parameter, a nested list of integers, and returns a new nested list.
Can you please describe the process of filtration : Can you please describe the process of filtration of urine and how it is eliminated by the body?
Ways the cardiovascular system : Provide a discussion regarding 2 ways the cardiovascular system works to control blood pressure. You can include such topics as cardiac output
Write a pre-condition and post-condition for this method : Consider the partial Java interface for the BagCQS ADT given in the Supplement. Note that this interface conforms to the principle of Command Query Separation.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

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