Problem: First write a set of instructions (algorithm) that can be used to determine whether a year is a leap year. The instruction must be very clear and simple. . To check that the algorithm works correctly, you will code it INDIVIDUALLY as an assembly program and test it.
Discussion: The rule for determining whether a year is a leap year is that a year must be evenly divisible by 4,but not a multiple of 100. When the year is a multiple of 400, it is a leap year anyway. You will need to write aset of rules as a series of steps (an algorithm) that can be followed easily by my daughter's class.