At the end of this lesson, you will be able to:
- understand and use nested if statement
- compound boolean expressions
- go over "nested if statements", Chapter 3
- Computer Based Problem Solving
- create your own nested if statement program (note you must use a nested if statement) that will solve this problem:
- Determine if a year is a "leap year"
- Read this to get the rules
- this might also help
- % is modulus operator in Python (7%2=1)
- you must do the design document before you can code
- create the above program in a second language
- read over "Do ... While Loops", Chapter 3
- Computer Based Problem Solving