Project choices for this week
1. Build a base converter that converts base b to
base 10 AND base 10 to base b. Handle
all input errors. This means that if 1234 was entered as a base 4 value, an
error message would appear, because ‘4’ is not a base 4 digit. Other usual data errors should be displayed
as well.
2. Complete the car sales record project from ppt8 ßNot too hard
3. Allow a user to enter numeric values. Store them in an array and
display in a list box. Provide functions or subs to find the largest/smallest value,
search for a value, and sum the values. Not too hard, since you can build this from
notes in ppt.
4. Complete a palindrome checker that doesn’t ignore cases and blanks (like the one in show 8b) ßNot too hard
5. Complete the super-duper palindrome checker (which ignores blanks and alpha-case)