02/09/05 CISC181 9am (1) Syllabus (2) Web site: homework assignment for Friday review homework and attendance policies (3) Who took CISC105? lab00 is optional for you lab01 is required for everyone printout of lab00 provided (only one that will be) lab00 and lab01 are both due next week amnesty on late penalties til end of drop/add (4) "Which course to take" exercises Useful for everyone, even if you already passed 105 (9:25 - 9:40) Two programs written in fictional language; Can you figure out what they do? Can you give better variable names? Can you add comments? (5) Go over example 1 below Before: Example 1 integer w, x, y, z y = 0 w = 0 read x while (y < x) begin read z w = w + z y = y + 1 end print w end After: Example 1 // y