Question

In: Computer Science

Instructions Write a Java program that asks the user t enter five test scores. The program...

Instructions

Write a Java program that asks the user t enter five test scores. The program should display a letter grade for each score and the average test score. Write the following methods in the program:

  • * calcAverage -- This method should accept five test scores as arguments and return the average of the scores.
  • * determineGrade -- This method should accept a test score as an argument and return a letter grade for the score, based on the following grading scale.

Score Letter Grade

90-100 A

80-89 B

70-79 C

60-69 D

Below 60 F

Solutions

Expert Solution

According to the problem statement above,

I have coded the function using Java

Below are the Snippets:

Code Snippet:

Output Snippet:

Code in Text format:

import java.io.*;
import java.util.*;

public class demo                                                                               // class starts from here
{
    public static double calcAverage(double a, double b, double c,double d, double e)           // method to calculate average
    {
        return (a + b + c + d + e) / 5;                                                         // returning the average
    }
  
    public static char determineGrade(double g)                                                 // method to determice Grade
    {
       if(g>=90 && g<=100)                                                                    // A between 90 and 100
       {
           return 'A';
       }
       else if(g>=80 && g<=90)                                                                 // B between 80 and 89
       {
           return 'B';
       }
       else if(g>=70 && g<=80)                                                                 // C between 70 and 79
       {
           return 'C';
       }
       else if(g>=60 && g<=70)                                                                 // D between 60 and 69
       {
           return 'D';
       }
       else if(g<60)                                                                           // A less than 60
       {
           return 'F';
       }
       return 0;
    }
  
   public static void main(String[] args)                                                      // main method
   {
        Scanner z = new Scanner(System.in);                                                     // scanner to scan inputs
    
        double num1 = z.nextDouble();                                                           // scanning 5 scores
        double num2 = z.nextDouble();
        double num3 = z.nextDouble();
        double num4 = z.nextDouble();
        double num5 = z.nextDouble();
      
        double average = calcAverage(num1, num2, num3, num4, num5);                             // passing scores to average
       char grade = determineGrade(average);                                                   // passing average to grade
      
        System.out.println("The average of Scores is: " +average);                              // printing average
        System.out.print("The grade of Test Score is: " +grade);                                // printing grade
    }
}

I hope the above snippets, information, and the explanation will help you out!

Please comment if you have any queries/errors!

Thank you!


Related Solutions

Write a program that asks the user to enter five test scores. The program should display...
Write a program that asks the user to enter five test scores. The program should display a letter grade for each score and the average test score. Write the following methods in the program: calcAverage: This method should accept five test scores as arguments and return the average of the scores. determineGrade: This method should accept a test score as an argument and return a letter grade for the score, based on the following grading scale: Score Letter Grade 90-100...
write a program in c++ that asks the user to enter their 5 test scores and...
write a program in c++ that asks the user to enter their 5 test scores and calculates the most appropriate mean. Have the results print to a text file and expected results to print to screen.
Design, plan, test, and write a computer program in Java that asks the user to enter...
Design, plan, test, and write a computer program in Java that asks the user to enter 1 number and a String. You will display the first n characters of the string where n is the number entered. For example, if the user enters 3 and java then you will print jav. If they enter 5 and Halloween then you print Hallo. If the user enters a number less than 0 then set the number to 0. Assume the user will...
Program should be written in Java a) Write a program that asks the user to enter...
Program should be written in Java a) Write a program that asks the user to enter the approximate current population of India. You should have the computer output a prompt and then YOU (as the user should enter the population.)  For testing purposes you may use the value of 1,382,000,000 from August 2020. Assume that the growth rate is 1.1% per year. Predict and print the predicted population for 2021 and 2022. The printout should include the year and the estimated...
Write a Java program that asks the user to enter an integer that is used to...
Write a Java program that asks the user to enter an integer that is used to set a limit that will generate the following four patterns of multiples of five using nested loops •Ascending multiples of five with ascending length triangle •Ascending multiples of five with descending length (inverted) triangle •Descending multiples of five with ascending length triangle •Descending multiples of five with descending length (inverted) triangle Use error checking to keep asking the user for a positive number until...
In java, write a program that asks the user to enter a character. Then pass the...
In java, write a program that asks the user to enter a character. Then pass the character to the following methods. isVowel() – returns true if the character is a vowel isConsonant() – returns true if the character is a consonant changeCase() – if the character is lower case then change it to upper case and if the character is in upper case then change it to lower case. (return type: char) Example output is given below: Enter a character...
USING THE SWITCH STATEMENT - Write a java program that asks the user to enter the...
USING THE SWITCH STATEMENT - Write a java program that asks the user to enter the number of their favorite month of the year – obviously, that would be 1 – 12. Write a switch statement that takes the number and converts it to the fully spelled out name [ex. 3 would be MARCH] . Be sure to build in error message to catch any invalid data entries such as 0 or 13 etc. Print out the number that was...
Java Program 1. Write a program that asks the user: “Please enter a number (0 to...
Java Program 1. Write a program that asks the user: “Please enter a number (0 to exit)”. Your program shall accept integers from the user (positive or negative), however, if the user enters 0 then your program shall terminate immediately. After the loop is terminated, return the total sum of all the previous numbers the user entered. a. What is considered to be the body of the loop? b. What is considered the control variable? c. What is considered to...
Program: Java (using eclipse) Write a program that asks the user to enter today’s sales for...
Program: Java (using eclipse) Write a program that asks the user to enter today’s sales for five stores. The program should then display a bar chart comparing each store’s sales. Create each bar in the bar chart by displaying a row or asterisks. Each asterisk should represent $100 of sales. You must use a loop to print the bar chart!!!! If the user enters a negative value for the sales amount, the program will keep asking the user to enter...
Write a java program which asks the user to enter name and age and calls the...
Write a java program which asks the user to enter name and age and calls the following methods: printName(): Takes name as parameter and prints it 20 times using a while loop. printAge(): Takes age as parameter and prints all the numbers from 1 up to age. Write a java program that will print first 10 multiples of 3 in a single line.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT