Saturday, August 6, 2016

Year Level Checker in Pascal

A simple program that I wrote in Pascal to check if the given year level of the student belongs to freshmen, sophomore, junior, seniors or invalid year level. The code is very simple and easy to understand I am using Turbo Pascal 5.0 for DOS in this sample program.

Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.







Sample Program Output


Program Listing

Program Year_Level;
Uses Crt;

Var year_level_students  : Integer;

Begin
  Clrscr;
  Write('Year Level Checker in Pascal');
  writeln;
  writeln;
  Write('Give the year level of the student :');
  readln(year_level_students);

  if (year_level_students = 1) then
    Begin
    Writeln;
    Writeln('You are belong to Freshmen.');
    End
  else if (year_level_students = 2) then
    Begin
    Writeln;
    Writeln('You are belong to Sophomore.');
    End
  else if (year_level_students = 3) then
    Begin
    Writeln;
    Writeln('You are belong to Juniors.');
    End
  else if (year_level_students = 4) then
    Begin
    Writeln;
    Writeln('You are belong to Seniors.');
    End
  else
     Begin
     Writeln;
     Writeln('Invalid Year Level Try Again.');
     End;
  Readln;
End.

No comments:

Post a Comment