|

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
| |
Program Painting;
- program painting(input,output);
begin
- PaintOval (70, 60, 110,
140);
- EraseRect (50, 60, 90,
140);
- MoveTo (100, 30);
- LineTo (140, 88);
- LineTo (100, 88);
- LineTo (100, 30);
- end.
Important Notes on Program
- end. not
end;
- each line has ; statement has a ;
after it
- parameter list for each statement is
position
not size
|