27 September 2015
Week 8
Lab 5 final version
Bitbucket quick intro (v.2)
for A1 submission
- commit your current version today
- update regularly (daily?)
Attendance (w8-2)
Slides (w8-2)
20 September 2015
13 September 2015
Week 6
Attendance (w6-1)
Slides (w6-1)
Lab 4x Hello Python
- try using online python editor and write programs for generic exercises
- visualize code execution
Attendance (w6-2)
Slides (w6-2)
Slides (w6-1)
Lab 4x Hello Python
- try using online python editor and write programs for generic exercises
- visualize code execution
Attendance (w6-2)
Slides (w6-2)
8 September 2015
Monthly Loan Payment
From this example, monthly payment is $444.24 (not $500)
To calculate use this formula
6 September 2015
Pseudocode example
The following pseudocode determines whether a year is a leap year
if (year is not exactly divisible by 4) then (it is a common year)
else if (year is not exactly divisible by 100) then (it is a leap year)
else if (year is not exactly divisible by 400) then (it is a common year)
else (it is a leap year)
https://en.wikipedia.org/wiki/Leap_year
if (year is not exactly divisible by 4) then (it is a common year)
else if (year is not exactly divisible by 100) then (it is a leap year)
else if (year is not exactly divisible by 400) then (it is a common year)
else (it is a leap year)
https://en.wikipedia.org/wiki/Leap_year
Subscribe to:
Comments (Atom)
