C# Program Create a class student with a data members name and calculate marks and percentage.

Object:

codeboks
1 min readAug 14, 2020

C# Program Create a class student with a data member name, age, marks of English, marks of math, marks of science, total marks, obtained marks and percentage provide member functions CalculateTotalMarks and CalculatePercentage to calculate marks and percentage in main. C# Projects with Source Code

Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Lab_3a
{……..continue for code and learn more…

--

--