using System.Collections;
namespace StudentRegistrationForm
public static void Main(String[] args)
Console.WriteLine(">>>>>>>STUDENT FORM<<<<<<<");
Console.Write("Last name: ");
string strname1 = Console.ReadLine();
Console.Write("First name: ");
string strname2 = Console.ReadLine();
Console.Write("Middle name: ");
string strname3 = Console.ReadLine();
Console.Write("Gender: ");
string strgender = Console.ReadLine();
Console.WriteLine(">>>DATE OF BIRTH<<<");
Console.Write(" Year: ");
int Year = Convert.ToInt32(Console.ReadLine());
Console.Write("Month: ");
int Month = Convert.ToInt32(Console.ReadLine());
int Day = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(">>>>>>>>PROGRAM TO APPLY<<<<<<<<");
ArrayList ListProgram = new ArrayList();
ListProgram.Add("Bachelor of Science in Computer Science / BSCS");
ListProgram.Add("Bachelor of Science in Information Technology / BSIT");
ListProgram.Add("Bachelor of Science in Information System / BSIS");
ListProgram.Add("Bachelor of Science in Computer Engineering / BSCPE");
foreach (string L in ListProgram)
Console.Write("CHOOSE PROGRAM: ");
string select = (Console.ReadLine());
Console.WriteLine("Student Name: " + strname1 + " " + strname2 + " " + strname3);
Console.WriteLine("Gender: " + strgender);
Console.WriteLine("Date of Birth: " + Year + "/" + Month + "/" + Day);
Console.WriteLine("Program: " + select );