Part2: Letter Grade To Number Write a program that translates a letter grade into a number grade. Letter grades are A, B, C, D, and F, possibly followed by + or -. Their numeric values are 4, 3, 2, 1, and 0. There is no F+ or F-. A + increases the numeric value by 0.3, a decreases it by 0.3. However, an A+ has value 4.0. A template java file: LetterGradeToNumber.java is provided. Your program output should like Figure 2: Submission Upload the following items on D2L dropbox, including: 1. The source code (Quadrants.java and LetterGradeToNumber.java). 2. Screenshots of your program outputs for each program (saved as png or jpg files).

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Bluet: Terminal Window - Prog3_Solution
Options
Enter a letter grade: A+
The numerical value is 4.0
Enter a letter grade: B-
The numerical value is 2.7
Enter a letter grade: C
The numerical value is 2.0
Enter a letter grade: D+
The numerical value is 1.3
Can only enter input while yo
Figure 2: A screenshot of Letter Grade To Number
Transcribed Image Text:Bluet: Terminal Window - Prog3_Solution Options Enter a letter grade: A+ The numerical value is 4.0 Enter a letter grade: B- The numerical value is 2.7 Enter a letter grade: C The numerical value is 2.0 Enter a letter grade: D+ The numerical value is 1.3 Can only enter input while yo Figure 2: A screenshot of Letter Grade To Number
Figure 1: A screenshot of quadrant for angle
Part2: Letter Grade To Number
Write a program that translates a letter grade into a number grade. Letter grades are A, B,
C, D, and F, possibly followed by + or -. Their numeric values are 4, 3, 2, 1, and 0. There
is no F+ or F-. A + increases the numeric value by 0.3, a decreases it by 0.3. However, an
A+ has value 4.0.
A template java file: LetterGradeToNumber.java is provided. Your program output should
like Figure 2:
Submission
Upload the following items on D2L dropbox, including:
1. The source code (Quadrants.java and LetterGradeToNumber.java).
2. Screenshots of your program outputs for each program (saved as png or jpg files).
Transcribed Image Text:Figure 1: A screenshot of quadrant for angle Part2: Letter Grade To Number Write a program that translates a letter grade into a number grade. Letter grades are A, B, C, D, and F, possibly followed by + or -. Their numeric values are 4, 3, 2, 1, and 0. There is no F+ or F-. A + increases the numeric value by 0.3, a decreases it by 0.3. However, an A+ has value 4.0. A template java file: LetterGradeToNumber.java is provided. Your program output should like Figure 2: Submission Upload the following items on D2L dropbox, including: 1. The source code (Quadrants.java and LetterGradeToNumber.java). 2. Screenshots of your program outputs for each program (saved as png or jpg files).
Expert Solution
Step1

Algorithm:

Step1: Enter grade by user and check the numerical value by letterGradeValue() function.
Step2: Function check with conditions with character at index 0 & 1 of user input string.
Step3: If grades has "+" at index 1, then return value increases 0.3 by operatorValue().
Step4: Else if grades has "-" at index 1, then return value decreases 0.3 by operatorValue().
Step5: Display the return numerical value.

 

The java program solution is given below:

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Introduction to Template
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education