SOLUTION: Write a program that will compute and display the midterm grade of a student. Midterm grade is equal to one-third of the minor A exam and two-thirds of midterm exam.

Algebra ->  Test -> SOLUTION: Write a program that will compute and display the midterm grade of a student. Midterm grade is equal to one-third of the minor A exam and two-thirds of midterm exam.      Log On


   



Question 1177998: Write a program that will compute and display the midterm grade of a student. Midterm grade is equal to one-third of the minor A exam and two-thirds of midterm exam.
Answer by greenestamps(13209) About Me  (Show Source):
You can put this solution on YOUR website!


Here is what such a program might look like; of course the exact format of the program will depend on what language you are writing it in.

begin
enter minor_A_grade
enter midterm_grade
midterm_grade = (1/3)*minor_A_grade+(2/3)midterm_grade
display midterm_grade
stop