Answer to Question #278576 in C# for Bunnu

Question #278576

are given two classes, Person and Student, where Person is the base class and Student is the derived class. Completed code for Person and a declaration for Student are provided for you in the editor. Observe that Student inherits all the properties of Person.



Complete the Student class by writing the following:



A Student class constructor, which has  parameters:



A string, .



A string, .



An integer, .



An integer array (or vector) of test scores, .



A char calculate() method that calculates a Student object's average and returns the grade character representative of their calculated average:

1
Expert's answer
2021-12-12T01:19:05-0500
using System;
using System.Collections.Generic;


namespace App
{
    class Person
    {
        protected string firstName;
        protected string lastName;
        protected int idNumber;


        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="firstName"></param>
        /// <param name="lastName"></param>
        /// <param name="identification"></param>
        public Person(String firstName, String lastName, int identification)
        {
            this.firstName = firstName;
            this.lastName = lastName;
            this.idNumber = identification;
        }


        /// <summary>
        /// Print person data
        /// </summary>
        public void printPerson()
        {
            Console.WriteLine("Name: " + lastName + ", " + firstName + "\nID: " + idNumber);
        }
    }


    class Student : Person
    {
        private int[] testScores;
        public Student(string firstName, string lastName, int id, int[] testScores)
            : base(firstName, lastName, id)
        {
            this.testScores = testScores;
            this.firstName = firstName;
            this.lastName = lastName;
            this.idNumber = id;
        }
        public char calculate()
        {
            float average = 0;
            float sum = 0;
            char grade = ' ';
            for (int i = 0, length = this.testScores.Length; i < length; i++)
            {
                sum += this.testScores[i];
            }
            average = sum / (float)this.testScores.Length;
            if (90 <= average && average <= 100)
            {
                grade = 'O';
            }
            else if (80 <= average && average < 90)
            {
                grade = 'E';
            }
            else if (70 <= average && average < 80)
            {
                grade = 'A';
            }
            else if (55 <= average && average < 70)
            {
                grade = 'P';
            }
            else if (40 <= average && average < 55)
            {
                grade = 'D';
            }
            else
            {
                grade = 'T';
            }
            return grade;
        }
    }
    class Program
    {
        public static void Main()
        {
            Console.Write("Enter the first name: ");
            string firstName = Console.ReadLine();
            Console.Write("Enter the last name: ");
            string lastName = Console.ReadLine();
            Console.Write("Enter ID: ");
            int id = int.Parse(Console.ReadLine());
            Console.Write("Enter the number of scores: ");
            int numScores = int.Parse(Console.ReadLine());
            int[] testScores = new int[numScores];
            for (int i = 0; i < numScores; i++)
            {
                Console.Write("Enter test score {0}: ", (i + 1));
                testScores[i] = int.Parse(Console.ReadLine());
            }


            Student s = new Student(firstName, lastName, id, testScores);
            s.printPerson();
            Console.WriteLine("Grade: " + s.calculate());




            Console.ReadLine();
        }
    }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS