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 I want solution in C# language

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

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

 

 

I want solution in C# language

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
%3D
D = 40(inclusive)-50, F= less than 40
of 5
639 words
English (United States)
晶 = :
Focus
120%
I山
Transcribed Image Text: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 %3D D = 40(inclusive)-50, F= less than 40 of 5 639 words English (United States) 晶 = : Focus 120% I山
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.
UC\Users\Adder\source\repos\ConsoleApp70\ConsoleApp70\bin\Debug\ConsoleApp70.exe
Student Semester Calculations
Enter a student id (0 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
Student 867594 moves on to the next semetser.
Enter a student id (0 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
775599
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
67
82
75
80.5
A
86.
Course 1
Course 2
Course 3
Course 4
Final
Grade
34
87
69
56
61.5
B
Course 1
Course 2
Course 3
Course 4
Final
Grade
88
Student 88 moves on to the next semetser.
Enter a student id (0 to quit): 0
92
95
78
88
88.25
A
**
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. UC\Users\Adder\source\repos\ConsoleApp70\ConsoleApp70\bin\Debug\ConsoleApp70.exe Student Semester Calculations Enter a student id (0 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 Student 867594 moves on to the next semetser. Enter a student id (0 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 775599 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 67 82 75 80.5 A 86. Course 1 Course 2 Course 3 Course 4 Final Grade 34 87 69 56 61.5 B Course 1 Course 2 Course 3 Course 4 Final Grade 88 Student 88 moves on to the next semetser. Enter a student id (0 to quit): 0 92 95 78 88 88.25 A ** 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
steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY