Create a console application on Visual Studio using C#

 C# on Visual Studio

 

A teacher is willing to calculate the sum of the three lowest marks and determine the
difference between the highest and lowest marks of his students. You are required to
create a console application for the teacher that:
• Prompts the teacher to enter the number of students.
• Uses a function that accepts an array of marks as argument and returns the
sum of the three lowest marks and the difference between the lowest mark and
the highest mark.

Note:
• The display should be done in the main program.
• Your program should not accept any mark less than 0 and greater than 100.

in progress
Programming Languages 1 Answer John Smith