
3.1.1 Write a client that creates a symbol table mapping letter grades to numerical scores, as...
Write a java client that creates a symbol table mapping letter grades to numerical scores, as in the table below, then reads from standard input a list of letter grades and computes and prints the GPA (the average of the numbers corresponding to the grades) USING SYMBOL TABLES. IN JAVA PLZ A+ A A- B+ B B- C+ C C- D+ D D F 4.35 4.00 3.65 3.35 3.00 2.65 2.35 2.00 1.65 1.35 1 .65 0.00
Bug fix 2 issue1) it should ask y/n after it shows the grade to continue further 2) if i enter 7 or 9 it shld show invalid message def calci(): grade = float(input("Enter your grade:")) while (grade <= 4): if (grade >= 0.00 and grade <= 0.67): print("F") break elif (grade >= 0.67 and grade <= 0.99): print("D-") break elif (grade >= 1.00 and grade <= 1.32): print("D") break elif (grade >= 1.33 and grade <= 1.66): print("D+") break elif...
Write a program in C language that reads scores and id numbers from a file, finds the average score, and assigns each student a grade based on the following rules: Each score > average + 20 gets an A Each score between average + 10 and average + 20 gets a B Each score between average - 10 and average + 10 gets a C Each score between average - 20 and average - 10 gets a D Each score...