using System;
using System.Collections.Generic;
using System.Text;
namespace STUDENT_221
{
public class student
{
public int stno;
public string stname;
public int[] mark;
string[] coursesname ={"math 202","stat 211","phys 101","cs 221,cs204" };
int[] coursehoure ={ 4,4,4,3,3};
public student()
{
stno = null;
stname = null;
mark=new int[5];
for (int i = 0; i < 5; i++)
mark[i] = 0;
}
public void input()
{
Console.WriteLine("\nplese enter your name :");
stname = Console.ReadLine();
Console.WriteLine("\nplese enter your number :");
stno = Console.ReadLine();
}
public void inputmark()
{
int i;
Console.Write("enter your marks ");
for (int i = 0; i < 5; i++)
{
Console.WriteLine(" course{0} :",coursesname);
mark[i] = Int32.Parse(Console.ReadLine());
}
}
public void output()
{
Console.WriteLine("student name :{0}\t student number :{1}",stname,stno);
}
}
class Program
{
static void Main(string[] args)
{
}
}
}