Perl

Menu

HW6 FAQ

  1. What format should the date be in?
    Choose any format that makes your sorting algorithm easiest for you. You can safely assume that the user will only enter the date in the format you choose (just make sure you show the format on the form, so I or the TAs know what to enter).
  2. Can we just have the users enter a positive or negative amount to determine deposit or withdrawal?
    Sorry, no. For the purposes of this assignment, I need to have you use various input methods, so I am requiring that the form will have one text field for a pure number (something matching a pattern of /\d+(?:\.\d+)/), and two radio buttons to determine deposit or withdrawal.