Scenario: You are tasked with writing a program to process students'end of semester marks. For each student you must enter into your program the student's id number (an integer), followed by their mark (an integer out of 100) in 4 courses. A student number of 0 indicates the end of the data. A student moves on to the next semester if the average of their 4 courses is at least 60 (greater than or equal to 60). Write a program to read the data and print, for each student: The student number, the marks obtained in each course, final mark of the student (average of all the marks), their final grade (A,B,C,D or F) and whether or not they move on to the next semester. In addition, after all data entry is completed, print • The number of students who move on to the next semester and the number who do not. • The student with the highest final mark (ignore the possibility of a tie). Grades are calculated as follows: A = 70 and over, B= 60 (inclusive) -70, C= 50(inclusive)-60 D= 40(inclusive)-50, F= less than 40

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
100%

Using C# write the below program using return when neccessary

Scenario:
You are tasked with writing a program to process students'end of semester marks. For each
student you must enter into your program the student's id number (an integer), followed by
their mark (an integer out of 100) in 4 courses. A student number of O indicates the end of the
data. A student moves on to the next semester if the average of their 4 courses is at least 60
(greater than or equal to 60).
Write a program to read the data and print, for each student:
The student number, the marks obtained in each course, final mark of the student (average of
all the marks), their final grade (A,B,C,D or F) and whether or not they move on to the next
semester.
In addition, after all data entry is completed, print
• The number of students who move on to the next semester and the number who do
not.
• The student with the highest final mark (ignore the possibility of a tie).
Grades are calculated as follows:
A= 70 and over, B = 60 (inclusive) -70, C = 50(inclusive)-60
D= 40(inclusive)-50, F= less than 40
Transcribed Image Text:Scenario: You are tasked with writing a program to process students'end of semester marks. For each student you must enter into your program the student's id number (an integer), followed by their mark (an integer out of 100) in 4 courses. A student number of O indicates the end of the data. A student moves on to the next semester if the average of their 4 courses is at least 60 (greater than or equal to 60). Write a program to read the data and print, for each student: The student number, the marks obtained in each course, final mark of the student (average of all the marks), their final grade (A,B,C,D or F) and whether or not they move on to the next semester. In addition, after all data entry is completed, print • The number of students who move on to the next semester and the number who do not. • The student with the highest final mark (ignore the possibility of a tie). Grades are calculated as follows: A= 70 and over, B = 60 (inclusive) -70, C = 50(inclusive)-60 D= 40(inclusive)-50, F= less than 40
KEYBOARD ENTRY EXAMPLE
Sample input and output for keyboard entry:
Note:Your program does NOT have to look the same. The wording and formatting can be
different.
E CAUsersVAdderlsource\repos\ConsoleApp70\.ConsoleApp70\bin\Debug\ConsoleApp70.exe
Student Semester Calculations
Enter a student id (e to quit): 867594
Enter the mark for course 1 (out of 100): 98
Enter the mark for course 2 (out of 100): 67
Enter the mark for course 3 (out of 100): 82
Enter the mark for course 4 (out of 100): 75
Student
Course 1
Course 2
Course 3
Course 4
Final
Grade
867594
98
67
82
75
80.5
A
Student 867594 moves on to the next semetser.
Enter a student id (e to quit): 775599
Enter the mark for course 1 (out of 100): 34
Enter the mark for course 2 (out of 100): 87
Enter the mark for course 3 (out of 100): 69
Enter the mark for course 4 (out of 100): 56
Student
Course 1
Course 2
Course 3
Course 4
Final
Grade
775599
34
87
69
56
61.5
Student 775599 moves on to the next semetser.
Enter a student id (0 to quit): 88
Enter the mark for course 1 (out of 100): 92
Enter the mark for course 2 (out of 100): 95
Enter the mark for course 3 (out of 100): 78
Enter the mark for course 4 (out of 100): 88
Student
Course 1
Course 2
Course 3
Course 4
Final
Grade
88
92
95
78
88
88.25
A
Student 88 moves on to the next semetser.
Enter a student id (0 to quit): 0
Summary Report
Student with the highest average was 88 with a grade of 88.25
Number of student who are moving on: 3
Number of student who are not moving on: 0
Transcribed Image Text:KEYBOARD ENTRY EXAMPLE Sample input and output for keyboard entry: Note:Your program does NOT have to look the same. The wording and formatting can be different. E CAUsersVAdderlsource\repos\ConsoleApp70\.ConsoleApp70\bin\Debug\ConsoleApp70.exe Student Semester Calculations Enter a student id (e to quit): 867594 Enter the mark for course 1 (out of 100): 98 Enter the mark for course 2 (out of 100): 67 Enter the mark for course 3 (out of 100): 82 Enter the mark for course 4 (out of 100): 75 Student Course 1 Course 2 Course 3 Course 4 Final Grade 867594 98 67 82 75 80.5 A Student 867594 moves on to the next semetser. Enter a student id (e to quit): 775599 Enter the mark for course 1 (out of 100): 34 Enter the mark for course 2 (out of 100): 87 Enter the mark for course 3 (out of 100): 69 Enter the mark for course 4 (out of 100): 56 Student Course 1 Course 2 Course 3 Course 4 Final Grade 775599 34 87 69 56 61.5 Student 775599 moves on to the next semetser. Enter a student id (0 to quit): 88 Enter the mark for course 1 (out of 100): 92 Enter the mark for course 2 (out of 100): 95 Enter the mark for course 3 (out of 100): 78 Enter the mark for course 4 (out of 100): 88 Student Course 1 Course 2 Course 3 Course 4 Final Grade 88 92 95 78 88 88.25 A Student 88 moves on to the next semetser. Enter a student id (0 to quit): 0 Summary Report Student with the highest average was 88 with a grade of 88.25 Number of student who are moving on: 3 Number of student who are not moving on: 0
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 6 images

Blurred answer
Knowledge Booster
Function Arguments
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