Translates a number into the closest letter grade

Assignment Help JAVA Programming
Reference no: EM13708804

Program: Write a program that translates a number into the closest letter grade. For case, the number 2.8 which might have been the average of several grades would be converted to B-.

Break ties in favor of the better grade; for case, 2.85 should be a B. Any value ?4.15 should be an A+.

Use a class Grade with a method getLetterGrade.

Here is a sample program run:

Enter a numeric value:

2.85

Letter grade: B

Use the subsequent class as your main class:

import java.util.Scanner;

/**

   This class prints the letter grade corresponding to a numeric value given by the user.

*/

public class GradePrinter

{

   public static void main(String[] args)

   {

      Scanner in = new Scanner(System.in);

      System.out.println("Enter a numeric value:");

      double numGrade = in.nextDouble();

      Grade g = new Grade(numGrade);

      System.out.println("Letter grade: " + g.getLetterGrade());

   }

}

You need to supply the subsequent class in your solution. Can someone demonstrate me how to write a proper code for this problem and how to complete it. Thanks

Reference no: EM13708804

Questions Cloud

Show the rbt after the bst-style deletion : Show the RBT after the BST-style deletion but before RB-Delete-Fixup - Identify whether there is a double black identifying the node, corresponding to underflow
Sum of the odd positions of the list : Write a function that takes a list of integers as argument and returns a pair consisting of the sum of the even positions and the sum of the odd positions of the list.
Explain the path a process : Explain the path a process might take through the five states specified in the five-state model discussed in the text?
Two dimensional int array to hold the prices of the seats : The Theater class shows a theater with an auditorium containing a fixed number of seats arranged in rows with each seat selling for a exacting price. The instance variables for the theater are:
Translates a number into the closest letter grade : Write a program that translates a number into the closest letter grade. For case, the number 2.8 which might have been the average of several grades would be converted to B-
Sums each component of the pairs : Write a version of sumPairs of Ex. 3.1.8 that sums each component of the pairs discretely, returning a pair consisting of the sum of the first components and the sum of the second components. So essentially [(3,1)(10,3)] would return (13,4).
The boiling points of alcohols are lower than the ketones : Question- The boiling points of alcohols are lower than the corresponding ketones with similar molecular weight.
Calculate the solubility of cubr : Question- Copper (i) ions in aqueous solution react with NH3 (aq) according to Cu^+ (aq) + 2NH3 (aq) ----------------> Cu (NH3)2^+ (aq) Kf = 6.3 X 10 ^10 Calculate the solubility (in g * L^-1) of CuBr (s) (Ksp = 6.3 X 10 ^-9) in 0.88 M NH3 (a..
Design an adt for a two-color : Design an ADT for a two-color, double-stack ADT that consists of two stacks one "red" and one "blue" and has as its operations color-coded versions of the regular stack ADT operations.

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