Write a C/C++ program that asks the user for three integer marks. These are the student marks out of 25 for class tests. Subsequently the program must ask the user for a big test mark out of 50. Test all values for validity. If a value is invalid, a message must be displayed, and the user must be repeatedly given chance to correct the input. The final mark is calculated with 50% class tests and 50% big test mark. The program must display the final mark, as well as a symbol representing the mark (see Table 1.1). The program must repeat until the user enters "-1" for the first class test. After the user has entered "-1", the program must display a summary of the marks, i.e. the average final mark, highest final mark, and lowest final mark. The program also displays the number of students that pass (mark>=50), pass with distinction (mark>=75), and the number of students that fail (mark<50).

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter9: Records (struct)
Section: Chapter Questions
Problem 2PE
icon
Related questions
Question
100%
Write a C/C++ program that asks the user for three integer marks. These are the student marks out of
25 for class tests.
Subsequently the program must ask the user for a big test mark out of 50.
Test all values for validity. If a value is invalid, a message must be displayed, and the user must be
repeatedly given chance to correct the input.
The final mark is calculated with 50% class tests and 50% big test mark.
The program must display the final mark, as well as a symbol representing the mark (see Table 1.1).
The program must repeat until the user enters “-1" for the first class test.
After the user has entered "-1", the program must display a summary of the marks, i.e. the average
final mark, highest final mark, and lowest final mark. The program also displays the number of students
that pass (mark>=50), pass with distinction (mark>=75), and the number of students that fail
(mark<50).
75+
A
60+
B
50+
40+
D
30+
F
Table 1.1
1
--Welcome to markbook=-
Enter marks for student 1:
Test number 1 (25): 11
Test number 2 (25): 11
Test number 3 (25): 12
Enter mark for big test (50): 23
Final mark for student 1 : 45.67, letter grade: D
Enter marks for student 2:
Test number 1 (25): 13
Test number 2 (25): 23
Test number 3 (25): 23
Enter mark for big test (50): 39
Final mark for student 2 : 78.33, letter grade: A
Enter marks for student 3:
Test number 1 (25): 100
Invalid test score. Please reenter: 25
Test number 2 (25): 25
Test number 3 (25): 25
Enter mark for big test (50): 50
Final mark for student 3 : 100.00, letter grade: A
Enter marks for student 4:
Test number 1 (25): -1
===
Summary of marks
Largest: 100
Smallest: 45.6667
Average: 74.67
Transcribed Image Text:Write a C/C++ program that asks the user for three integer marks. These are the student marks out of 25 for class tests. Subsequently the program must ask the user for a big test mark out of 50. Test all values for validity. If a value is invalid, a message must be displayed, and the user must be repeatedly given chance to correct the input. The final mark is calculated with 50% class tests and 50% big test mark. The program must display the final mark, as well as a symbol representing the mark (see Table 1.1). The program must repeat until the user enters “-1" for the first class test. After the user has entered "-1", the program must display a summary of the marks, i.e. the average final mark, highest final mark, and lowest final mark. The program also displays the number of students that pass (mark>=50), pass with distinction (mark>=75), and the number of students that fail (mark<50). 75+ A 60+ B 50+ 40+ D 30+ F Table 1.1 1 --Welcome to markbook=- Enter marks for student 1: Test number 1 (25): 11 Test number 2 (25): 11 Test number 3 (25): 12 Enter mark for big test (50): 23 Final mark for student 1 : 45.67, letter grade: D Enter marks for student 2: Test number 1 (25): 13 Test number 2 (25): 23 Test number 3 (25): 23 Enter mark for big test (50): 39 Final mark for student 2 : 78.33, letter grade: A Enter marks for student 3: Test number 1 (25): 100 Invalid test score. Please reenter: 25 Test number 2 (25): 25 Test number 3 (25): 25 Enter mark for big test (50): 50 Final mark for student 3 : 100.00, letter grade: A Enter marks for student 4: Test number 1 (25): -1 === Summary of marks Largest: 100 Smallest: 45.6667 Average: 74.67
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Random Class and its operations
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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning