Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Define a student class that supports the following fields. (Choose your own names for the fields/properties) id - int name - string grade - char
Define a student class that supports the following fields. (Choose your own names for the fields/properties)
id - int
name - string
grade - char
---
Properties:
ID - get
Name - get/set
Grade - get
---
Methods:
Constructor - Takes and int for id and string for name.
SetGrade(float score) - Sets the grade to a letter value based upon score, use a standard scale.
ToString() - override ToString to return Name + ID + Grade as a comma separated list
---
Main, create an object, set the grade and print it out using ToString()
C#
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started