CMPS 002 - Computer Literacy

Prof. Paulo Franca

CyberSlug Rules!

Classes

Class Syllabus

Grading Policy

Labs

Interact

Login

  • enter system
  • get attendance
  • submit work
  • take lab quiz
  • check scores

Help

Help me!

Links

Staff only

 

 

 

Datacare   Ahshay

 

Parameters

  • procedure declaration includes formal parameter list (the definition)
     procedure drawfish (top, left, bottom, right : integer);
 
     begin
 
          frameoval (top, left, bottom, right);
 
          paintcircle (right - 7, top + 8, 3);
 
     end;
 
  • procedure call passes parameters to the procedure
begin
 
   drawfish (120, 70, 140, 130);
 
   drawfish (150, 140, 170, 190);
 
end.